Fix issues with property searches

This commit is contained in:
Dave Halter
2020-07-20 01:40:25 +02:00
parent 784e965d3a
commit 401e8d3100

View File

@@ -69,8 +69,9 @@ def test_load_save_project(tmpdir):
('class sample_int.real', [], {}), ('class sample_int.real', [], {}),
('foo sample_int.real', [], {}), ('foo sample_int.real', [], {}),
('def sample_int.real', ['stub:builtins.int.real'], {}), ('def sample_int.to_bytes', ['stub:builtins.int.to_bytes'], {}),
('function sample_int.real', ['stub:builtins.int.real'], {}), ('function sample_int.to_bytes', ['stub:builtins.int.to_bytes'], {}),
('property sample_int.real', ['stub:builtins.int.real'], {}),
# With modules # With modules
('test_project.test_search', ['test_api.test_project.test_search'], {}), ('test_project.test_search', ['test_api.test_project.test_search'], {}),