Skip to content

Commit

Permalink
update expected order
Browse files Browse the repository at this point in the history
  • Loading branch information
dpark01 committed Mar 28, 2024
1 parent 28aed63 commit 3aa29ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/test_assembly.py
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ def test_output_sorted_by_product(self):
with open(out_skani_dist, 'r') as inf:
hits = list(row['Ref_name'].split()[0].split('_')[1] for row in csv.DictReader(inf, delimiter='\t'))
self.assertEqual(len(hits), 10)
expected = ['L24917.1','DQ473501.1','DQ473496.1','FJ445140.1','FJ445177.1','FJ445116.1','DQ473499.1','DQ473507.1','DQ473498.1','GQ223229.1']
expected = ['FJ445177.1','L24917.1','FJ445116.1','DQ473501.1','DQ473496.1','DQ473507.1','DQ473499.1','FJ445140.1','DQ473498.1','GQ223229.1']
self.assertEqual(hits, expected)


Expand Down

0 comments on commit 3aa29ec

Please sign in to comment.