Update colour by property test to reflect new behaviour of only showing geometry not empties

ALL (feature) TESTS PASS YESS
This commit is contained in:
Dion Moult
2025-05-18 19:23:34 +10:00
parent 3a37bcdcaa
commit 404bf13a18
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -472,7 +472,7 @@ def i_dont_see_text(text):
def i_dont_see_the_name_list(name):
assert panel_spy
panel_spy.refresh_spy()
assert name not in [l["listtype_name"] for l in panel_spy.spied_lists]
assert name not in [l.spied_data["listtype_name"] for l in panel_spy.spied_lists]
@given(parsers.parse('I see the "{prop}" property'))