Skip to content

Commit

Permalink
Update tests/test_io.py
Browse files Browse the repository at this point in the history
  • Loading branch information
janbridley authored Sep 12, 2024
1 parent fa10da7 commit 5415ab4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ def compare_text_files(file_path_1, file_path_2):
newline characters."""
with open(file_path_1) as file1, open(file_path_2) as file2:
file1_contents, file2_contents = file1.read(), file2.read()
for i, char in file1_contents:
print(char, file2_contents[i])
return file1_contents == file2_contents


Expand Down

0 comments on commit 5415ab4

Please sign in to comment.