Skip to content

Commit

Permalink
edit test_write_binary() to match changes
Browse files Browse the repository at this point in the history
  • Loading branch information
levisweetbreu committed Mar 27, 2024
1 parent 4f159d4 commit bb1cb8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def test_write_binary(self):
assert os.path.exists(test_binary_filename), "Binary file was not created."
with open(test_binary_filename, "rb") as binary_file:
content = binary_file.read()
assert len(content) == 105648, "Content length is not as expected"
assert len(content) == 105600, "Content length is not as expected"

os.remove(test_binary_filename)

Expand Down

0 comments on commit bb1cb8a

Please sign in to comment.