From 401e8d3100b80ba0cdf1c82b7f4b22a94f56c14f Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Mon, 20 Jul 2020 01:40:25 +0200 Subject: [PATCH] Fix issues with property searches --- test/test_api/test_project.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/test_api/test_project.py b/test/test_api/test_project.py index c9bbe008..7ec880ad 100644 --- a/test/test_api/test_project.py +++ b/test/test_api/test_project.py @@ -69,8 +69,9 @@ def test_load_save_project(tmpdir): ('class sample_int.real', [], {}), ('foo sample_int.real', [], {}), - ('def sample_int.real', ['stub:builtins.int.real'], {}), - ('function sample_int.real', ['stub:builtins.int.real'], {}), + ('def sample_int.to_bytes', ['stub:builtins.int.to_bytes'], {}), + ('function sample_int.to_bytes', ['stub:builtins.int.to_bytes'], {}), + ('property sample_int.real', ['stub:builtins.int.real'], {}), # With modules ('test_project.test_search', ['test_api.test_project.test_search'], {}),