Skip to content

Commit

Permalink
Make python_version test pass
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayP13 committed Dec 27, 2023
1 parent 026cf52 commit 80d91ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/test_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def test_running_in_pytest(self):
assert RUNNING_IN_PYTEST

def test_python_version(self):
with open(".python-version", "r") as f:
with open("./scripts/.python-version", "r") as f:
python_version = f.read().strip()
assert python_version == platform.python_version()

Expand Down

0 comments on commit 80d91ec

Please sign in to comment.