Skip to content

Commit dad2cc3

Browse files
committed
-
1 parent 464ebc5 commit dad2cc3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

source_py3/test_python_toolbox/test_zip_tools/test_zip_folder.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ def test():
2626
zip_tools.zip_folder(folder_to_zip, temp_folder / 'archive.zip')
2727

2828
assert zip_file_path.is_file()
29-
assert zip_tools.unzip_in_memory(zip_file_path.open('rb').read()) == (
29+
assert set(
30+
zip_tools.unzip_in_memory(zip_file_path.open('rb').read())
31+
) == {
3032
('folder_to_zip/some_file.txt', b'hello there!'),
3133
('folder_to_zip/some_other_file.txt', b'hello there again!'),
32-
)
34+
}

0 commit comments

Comments
 (0)