fix(test): complete workspace setup before running UI tests
This commit is contained in:
parent
0837a39335
commit
0a00b40cee
1 changed files with 2 additions and 3 deletions
|
|
@ -77,8 +77,7 @@ def sync_table(key, hook):
|
|||
|
||||
# remove unused items
|
||||
items = navbar_settings.get(key)
|
||||
for item in items:
|
||||
if item.is_standard and (item.item_label not in new_standard_items):
|
||||
items.remove(item)
|
||||
items = [item for item in items if not (item.is_standard and (item.item_label not in new_standard_items))]
|
||||
navbar_settings.set(key, items)
|
||||
|
||||
navbar_settings.save()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue