From ff33ab73c2ab27d1d73b0827b3719a3fb76489c0 Mon Sep 17 00:00:00 2001 From: Mathieu Comandon Date: Mon, 26 Apr 2021 22:42:38 -0700 Subject: [PATCH] Fix tests --- tests/test_dialogs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_dialogs.py b/tests/test_dialogs.py index a9b6de9ca..d6a9adf52 100644 --- a/tests/test_dialogs.py +++ b/tests/test_dialogs.py @@ -20,7 +20,7 @@ setup_test_environment() class TestGameDialogCommon(TestCase): def test_get_runner_liststore(self): - dlg = GameDialogCommon() + dlg = GameDialogCommon("test") list_store = dlg._get_runner_liststore() self.assertTrue( list_store[1][0].startswith(runners.get_installed()[0].human_name)