We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da6d4e4 commit 912e80cCopy full SHA for 912e80c
tests/test_all.py
@@ -21,7 +21,7 @@ def test_all(library):
21
import_(library, wrapper=True)
22
23
for mod_name in sys.modules:
24
- if 'array_api_compat.' + library not in mod_name:
+ if not mod_name.startswith('array_api_compat.' + library):
25
continue
26
27
module = sys.modules[mod_name]
0 commit comments