aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/lz4/py3/patches/01-fix-tests.patch
blob: 7c59b9c8d6260ea4045c0f947f9e7a9bbd34ab77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- contrib/python/lz4/py3/tests/block/conftest.py	(index)
+++ contrib/python/lz4/py3/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):
--- contrib/python/lz4/py3/tests/stream/conftest.py	(index)
+++ contrib/python/lz4/py3/tests/stream/conftest.py	(working tree)
@@ -8,7 +8,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):