01-fix-tests.patch 481 B

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