From 8e8b5a90cd3a9ab0c059572ba6f5c98ca84a5c97 Mon Sep 17 00:00:00 2001 From: Ales Erjavec Date: Thu, 19 Oct 2023 11:23:27 +0200 Subject: [PATCH] test_main: Change test name that shadows a previous test --- orangecanvas/application/tests/test_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orangecanvas/application/tests/test_main.py b/orangecanvas/application/tests/test_main.py index 2648bfbb2..927375e87 100644 --- a/orangecanvas/application/tests/test_main.py +++ b/orangecanvas/application/tests/test_main.py @@ -123,7 +123,7 @@ def test_run(self): self.assertEqual(res, 42) @with_patched_main_application - def test_run(self): + def test_run_with_file(self): m = Main() with patch.object(self.app, "exec", lambda: 42), \ patch.object(CanvasMainWindow, "open_scheme_file", Mock()), \