From c95ee766aa1fb1c186e2123aa315e8d6534819a5 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Fri, 12 Sep 2025 11:20:37 -0700 Subject: [PATCH] bepasty: tests: Override backup/restore test properly - The current name does not the match the base class method it intends to override. Tests: - Run functional tests for bepasty -v option and notice that only one backup and restore test runs. Signed-off-by: Sunil Mohan Adapa --- plinth/modules/bepasty/tests/test_functional.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth/modules/bepasty/tests/test_functional.py b/plinth/modules/bepasty/tests/test_functional.py index 64613b950..9ba8c15dc 100644 --- a/plinth/modules/bepasty/tests/test_functional.py +++ b/plinth/modules/bepasty/tests/test_functional.py @@ -43,7 +43,7 @@ class TestBepastyApp(functional.BaseAppTests): assert not _can_login(session_browser, password_added) @pytest.mark.backups - def test_backup_and_restore(self, session_browser): + def test_backup_restore(self, session_browser): functional.app_enable(session_browser, 'bepasty') password_added = _add_and_save_password(session_browser) functional.backup_create(session_browser, 'bepasty', 'test_bepasty')