Skip to content

Commit 8aa79a6

Browse files
committed
✅ fix numpy-stubs runtime test runner
1 parent bcc212e commit 8aa79a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/numpy-stubs/@test/runtime/test_runtime.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
"module",
1313
[
1414
path.stem
15-
for path in (Path(__file__).parent / "accept").iterdir()
15+
for path in (Path(__file__).parent / "legacy").iterdir()
1616
if path.suffix == ".py" and path.stem != "__init__"
1717
],
18-
ids="test/runtime/accept/{}.py".format,
18+
ids="test/runtime/legacy/{}.py".format,
1919
)
20-
def test_accept(module: str) -> None:
21-
importlib.import_module(f"accept.{module}")
20+
def test_legacy(module: str) -> None:
21+
importlib.import_module(f"legacy.{module}")

0 commit comments

Comments
 (0)