Skip to content

Commit 4244965

Browse files
committed
exclude quote marks
1 parent b80a558 commit 4244965

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

array_api_tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
if "ARRAY_API_TESTS_MODULE" in os.environ:
1616
env_var = os.environ["ARRAY_API_TESTS_MODULE"]
1717
if env_var.startswith("exec(") and env_var.endswith(")"):
18-
script = env_var[5:][:-1]
18+
script = env_var[6:][:-2]
1919
namespace = {}
2020
exec(script, namespace)
2121
xp = namespace["xp"]

0 commit comments

Comments
 (0)