From 84eedfca03d952232fe7b5926d927cca7202b6ff Mon Sep 17 00:00:00 2001 From: Veiko Aasa Date: Sat, 3 Sep 2022 17:04:15 +0300 Subject: [PATCH] tests: functional: Assert app is not installed after uninstallation Signed-off-by: Veiko Aasa Reviewed-by: Sunil Mohan Adapa --- plinth/tests/functional/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plinth/tests/functional/__init__.py b/plinth/tests/functional/__init__.py index 930cc74f1..92e35ad02 100644 --- a/plinth/tests/functional/__init__.py +++ b/plinth/tests/functional/__init__.py @@ -701,4 +701,5 @@ class BaseAppTests: def test_uninstall(self, session_browser): """Test that app can be uninstalled and installed back again.""" uninstall(session_browser, self.app_name) + assert not is_installed(session_browser, self.app_name) install(session_browser, self.app_name)