Skip to content

Commit

Permalink
TST: Fix unit test in test_formats/test_seq/test_simple.py
Browse files Browse the repository at this point in the history
  • Loading branch information
NickleDave committed May 21, 2022
1 parent 6927c22 commit 0f9eb2f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/test_formats/test_seq/test_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,4 @@ def test_to_file(a_simple_csv_path,
simple = crowsetta.formats.seq.SimpleSeq.from_file(annot_path=a_simple_csv_path)
csv_path = tmp_path / a_simple_csv_path.name
simple.to_file(annot_path=csv_path)
try:
assert filecmp.cmp(a_simple_csv_path, csv_path)
except AssertionError:
breakpoint()
assert filecmp.cmp(a_simple_csv_path, csv_path)

0 comments on commit 0f9eb2f

Please sign in to comment.