We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 464ebc5 commit dad2cc3Copy full SHA for dad2cc3
source_py3/test_python_toolbox/test_zip_tools/test_zip_folder.py
@@ -26,7 +26,9 @@ def test():
26
zip_tools.zip_folder(folder_to_zip, temp_folder / 'archive.zip')
27
28
assert zip_file_path.is_file()
29
- assert zip_tools.unzip_in_memory(zip_file_path.open('rb').read()) == (
+ assert set(
30
+ zip_tools.unzip_in_memory(zip_file_path.open('rb').read())
31
+ ) == {
32
('folder_to_zip/some_file.txt', b'hello there!'),
33
('folder_to_zip/some_other_file.txt', b'hello there again!'),
- )
34
+ }
0 commit comments