Skip to content

Commit

Permalink
fghd
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenNneji committed Nov 1, 2024
1 parent 6c05f47 commit 8f14833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -1122,7 +1122,7 @@ def test_write_script(project, request, temp_dir, input_filename: str) -> None:
assert script_path.exists()
print(script_path.read_text())
# Test we get the project object we expect when running the script
with open(script_path, "r") as f:
with open(script_path) as f:
exec(f.read())
print(locals)
new_project = locals()["problem"]
Expand Down

0 comments on commit 8f14833

Please sign in to comment.