From ed3564831c0b306826bd0c890251fbe934fbb96c Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Fri, 6 Mar 2020 14:28:48 +0100 Subject: [PATCH] Some minor test reworks --- test/test_api/test_project.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test_api/test_project.py b/test/test_api/test_project.py index d9ea05fa..8a56d66f 100644 --- a/test/test_api/test_project.py +++ b/test/test_api/test_project.py @@ -63,8 +63,9 @@ def test_load_save_project(tmpdir): ('sample_int.real', ['builtins.int.real'], {}), ('class sample_int.real', [], {}), - ('function sample_int.real', ['builtins.int.real'], {}), + ('foo sample_int.real', [], {}), ('def sample_int.real', ['builtins.int.real'], {}), + ('function sample_int.real', ['builtins.int.real'], {}), ] ) @pytest.mark.skipif(sys.version_info < (3, 6), reason="Ignore Python 2, because EOL")