Skip to content

Commit

Permalink
Missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisib committed Dec 7, 2024
1 parent 23a2b1d commit 7ff50ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion software/tests/test_europi_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def test_save_load_state_json(script_for_testing):
with open(script_for_testing._state_filename, "r") as f:
assert re.match(
r'\{\s*"one"\s*:\s*1\s*,\s*"two"\s*:\s*\[\s*"a"\s*,\s*"bb"\s*\]\s*,\s*"three"\s*:\s*true\s*\}',
f.read()
f.read(),
)
assert script_for_testing.load_state_json() == state

Expand Down

0 comments on commit 7ff50ba

Please sign in to comment.