We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c65e21 commit aeba9a1Copy full SHA for aeba9a1
source_py2/test_python_toolbox/test_zip_tools/test_zip_folder.py
@@ -24,7 +24,7 @@ def test():
24
(folder_to_zip / 'some_other_file.txt').open('w').write(
25
u'hello there again!')
26
27
- import gc; gc.collect()
+ import gc; gc.collect() # Making PyPy happy.
28
29
zip_file_path = temp_folder / 'archive.zip'
30
assert isinstance(zip_file_path, pathlib.Path)
@@ -43,4 +43,7 @@ def test():
43
} or result == {
44
('folder_to_zip/some_file.txt', 'hello there!'),
45
('folder_to_zip/some_other_file.txt', 'hello there again!'),
46
- }
+ }
47
+
48
49
0 commit comments