Skip to content

Commit 7ccdc71

Browse files
test fixed
1 parent 7a61590 commit 7ccdc71

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_gui_modules_initialization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def test_gui_module_initialization(module_path, safe_matplotlib):
3434
break
3535
if not gui_class:
3636
for obj in defined_classes:
37-
if any(obj.__name__.endswith(s) for s in ['GUI', 'App', 'Window']):
37+
if any(s in obj.__name__ for s in ['GUI', 'App', 'Window']):
3838
gui_class = obj
3939
break
4040
if not gui_class and defined_classes:

0 commit comments

Comments
 (0)