Skip to content

Commit

Permalink
fix test merge?
Browse files Browse the repository at this point in the history
  • Loading branch information
Phlya committed Mar 27, 2024
1 parent 037ae7f commit 74b17cb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@ def test_mock_pairsam(setup_sort_two):
if prev_pair is not None:
assert cur_pair[0] >= prev_pair[0]
if cur_pair[0] == prev_pair[0]:
assert cur_pair[1] >= prev_pair[1]
if cur_pair[1] == prev_pair[1]:
assert cur_pair[2] >= prev_pair[2]
if cur_pair[2] == prev_pair[2]:
assert cur_pair[3] >= prev_pair[3]
assert cur_pair[2] >= prev_pair[2]
if cur_pair[2] == prev_pair[2]:
assert int(cur_pair[1]) >= int(prev_pair[1])
if int(cur_pair[1]) == int(prev_pair[1]):
assert int(cur_pair[3]) >= int(prev_pair[3])

prev_pair = cur_pair

Expand Down

0 comments on commit 74b17cb

Please sign in to comment.