Skip to content

Commit 6b19de9

Browse files
committed
fix typo in file path used by test fixtures
1 parent f812b3c commit 6b19de9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_all_py_components.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def _detect_repo_root() -> Path:
1919
@pytest.fixture(scope="module",autouse=True)
2020
def startprod():
2121
repo_root = _detect_repo_root()
22-
cls_host = repo_root / "tests" / "helpers" / "allPyComponents" / "Production.cls"
22+
cls_host = repo_root / "tests" / "helpers" / "AllPyComponents" / "Production.cls"
2323
if not cls_host.exists():
2424
raise FileNotFoundError(f"IRIS class file not found: {cls_host}")
2525

0 commit comments

Comments
 (0)