From 3bf9dac2019f76f5fbc92f437e6df2487c3c90ee Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Fri, 26 Nov 2021 16:52:50 +0530 Subject: [PATCH] tests: Fix app name in pytest.skip statement Removed a stray `$` character prepended to the app name. Signed-off-by: Joseph Nuthalapati Reviewed-by: James Valleroy --- plinth/tests/functional/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth/tests/functional/__init__.py b/plinth/tests/functional/__init__.py index acee59ca7..10e6511a9 100644 --- a/plinth/tests/functional/__init__.py +++ b/plinth/tests/functional/__init__.py @@ -638,7 +638,7 @@ class BaseAppTests: def test_run_diagnostics(self, session_browser): """Test that all app diagnostics are passing.""" if not self.check_diagnostics: - pytest.skip(f'Skipping diagnostics check for ${self.app_name}.') + pytest.skip(f'Skipping diagnostics check for {self.app_name}.') time.sleep(self.diagnostics_delay) session_browser.find_by_id('id_extra_actions_button').click()