tests: Fix app name in pytest.skip statement

Removed a stray `$` character prepended to the app name.

Signed-off-by: Joseph Nuthalapati <njoseph@riseup.net>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Joseph Nuthalapati 2021-11-26 16:52:50 +05:30 committed by James Valleroy
parent 6816d2c87d
commit 3bf9dac201
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -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()