Skip to content

Commit

Permalink
Removing sort
Browse files Browse the repository at this point in the history
  • Loading branch information
ntlhui committed Mar 4, 2023
1 parent aa7036c commit c3342e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def test_add_files_start_stop(single_mission: Tuple[Mock, DataManager, Path],
data_dir, n_files, _ = test_data


bin_files = sorted(data_dir.glob('*.bin'))
bin_files = data_dir.glob('*.bin')
start_time = dt.datetime.fromtimestamp(bin_files[0].stat().st_mtime)
end_time = dt.datetime.fromtimestamp(bin_files[-1].stat().st_mtime)

Expand Down

0 comments on commit c3342e4

Please sign in to comment.