We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12e9684 commit 9bddbd8Copy full SHA for 9bddbd8
photostats/tests/test_get_exif.py
@@ -36,13 +36,12 @@ def test_scan_test():
36
photos = []
37
for file in scan_tree:
38
photos.append(file.path)
39
- assert photos == file_paths
+ assert photos.sort() == file_paths.sort()
40
41
42
def test_get_photos():
43
photo_list = get_exif.get_photos(test_directory)
44
- print(photo_list)
45
- assert photo_list == file_paths
+ assert photo_list.sort() == file_paths.sort()
46
47
48
def test_get_exif():
0 commit comments