Skip to content

Commit

Permalink
updated tests sort key
Browse files Browse the repository at this point in the history
  • Loading branch information
mattheww95 committed Apr 23, 2024
1 parent 349265a commit fa3bebe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ def test_formatted_db_content(output_directory):
actual_text = sorted(act.readlines(), key=sort_key)
expected_text = sorted(expc.readlines(), key=sort_key)
for i, j in zip(actual_text, expected_text):
assert i == j
#ignoring row id
assert i.split(delimiter)[1:] == j.split(delimiter)[1:]

def test_format_results(output_directory):
"""
Expand Down

0 comments on commit fa3bebe

Please sign in to comment.