Skip to content

Commit

Permalink
test(api): consistent sorting order in output filelist
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdoret committed Dec 15, 2023
1 parent 6198bcd commit 432a957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modo/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class MODO:
['http://example.org/bac1', 'http://example.org/bac2']
# List files in the archive
>>> [file.name for file in demo.list_files()]
>>> sorted([file.name for file in demo.list_files()])
['demo1.cram', 'demo2.cram', 'ecoli_ref.fa', 'metadata.ttl']
# Query the metadata graph to find the location of the
Expand Down

0 comments on commit 432a957

Please sign in to comment.