Skip to content

Commit aeba9a1

Browse files
committed
-
1 parent 3c65e21 commit aeba9a1

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

source_py2/test_python_toolbox/test_zip_tools/test_zip_folder.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def test():
2424
(folder_to_zip / 'some_other_file.txt').open('w').write(
2525
u'hello there again!')
2626

27-
import gc; gc.collect()
27+
import gc; gc.collect() # Making PyPy happy.
2828

2929
zip_file_path = temp_folder / 'archive.zip'
3030
assert isinstance(zip_file_path, pathlib.Path)
@@ -43,4 +43,7 @@ def test():
4343
} or result == {
4444
('folder_to_zip/some_file.txt', 'hello there!'),
4545
('folder_to_zip/some_other_file.txt', 'hello there again!'),
46-
}
46+
}
47+
48+
import gc; gc.collect() # Making PyPy happy.
49+

0 commit comments

Comments
 (0)