We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a61590 commit 7ccdc71Copy full SHA for 7ccdc71
1 file changed
tests/test_gui_modules_initialization.py
@@ -34,7 +34,7 @@ def test_gui_module_initialization(module_path, safe_matplotlib):
34
break
35
if not gui_class:
36
for obj in defined_classes:
37
- if any(obj.__name__.endswith(s) for s in ['GUI', 'App', 'Window']):
+ if any(s in obj.__name__ for s in ['GUI', 'App', 'Window']):
38
gui_class = obj
39
40
if not gui_class and defined_classes:
0 commit comments