Skip to content

Commit

Permalink
🔍 Adding sort
Browse files Browse the repository at this point in the history
Because, apparently the system in GH CI grabs these differently than my system.
  • Loading branch information
djotaku committed Mar 26, 2020
1 parent 12e9684 commit 9bddbd8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions photostats/tests/test_get_exif.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,12 @@ def test_scan_test():
photos = []
for file in scan_tree:
photos.append(file.path)
assert photos == file_paths
assert photos.sort() == file_paths.sort()


def test_get_photos():
photo_list = get_exif.get_photos(test_directory)
print(photo_list)
assert photo_list == file_paths
assert photo_list.sort() == file_paths.sort()


def test_get_exif():
Expand Down

0 comments on commit 9bddbd8

Please sign in to comment.