From e8818179f780845b8988f0a2e44b99a59766cd66 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sat, 22 Jul 2023 15:50:30 -0700 Subject: [PATCH] tor: tests: Make functional test check for running service Tor app does have a running daemon. Tests: - Functional tests pass. Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/tor/tests/test_functional.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth/modules/tor/tests/test_functional.py b/plinth/modules/tor/tests/test_functional.py index 8abab7a7b..6ab77831c 100644 --- a/plinth/modules/tor/tests/test_functional.py +++ b/plinth/modules/tor/tests/test_functional.py @@ -18,7 +18,7 @@ pytestmark = [pytest.mark.apps, pytest.mark.domain, pytest.mark.tor] class TestTorApp(functional.BaseAppTests): app_name = 'tor' - has_service = False + has_service = True has_web = False def test_set_tor_relay_configuration(self, session_browser):