blob: cc1d45080af348d7d780ede5960ecfae231049e0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- contrib/python/lz4/py2/tests/block/conftest.py (index)
+++ contrib/python/lz4/py2/tests/block/conftest.py (working tree)
@@ -9,7 +9,7 @@ test_data = [
(b'0' * 8 * 1024),
(bytearray(b'')),
(bytearray(os.urandom(8 * 1024))),
- (bytearray(open(os.path.join(os.path.dirname(__file__), 'numpy_byte_array.bin'), 'rb').read()))
+ #(bytearray(open(os.path.join(os.path.dirname(__file__), 'numpy_byte_array.bin'), 'rb').read()))
]
if sys.version_info > (2, 7):
|