diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2015-05-17 19:55:49 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2015-05-17 19:55:49 (GMT) |
commit | 60d657ac86ce2db86a5392d26452e9c63230f0a3 (patch) | |
tree | 6ab78d412cf20492a6f9ba0138e404aeb76410da | |
parent | cdb136d9606753e314c318c9dbb27b6699d04571 (diff) | |
download | lz4-60d657ac86ce2db86a5392d26452e9c63230f0a3.zip lz4-60d657ac86ce2db86a5392d26452e9c63230f0a3.tar.gz lz4-60d657ac86ce2db86a5392d26452e9c63230f0a3.tar.bz2 |
removed "flush" argument to please Travis's python version
-rw-r--r-- | test/test-lz4-versions.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test-lz4-versions.py b/test/test-lz4-versions.py index 9b7e0c5..b6ed126 100644 --- a/test/test-lz4-versions.py +++ b/test/test-lz4-versions.py @@ -112,12 +112,12 @@ if __name__ == '__main__': print('Decompression tests and verifications') lz4s = sorted(glob.glob('*.lz4')) for lz4 in lz4s: - print(lz4, end=" ", flush=True) + print(lz4, end=" ") for tag in tags: - print(tag, end=" ", flush=True) + print(tag, end=" ") proc(['./lz4c.' + tag, '-df', lz4, lz4 + '_d64_' + tag + '.dec']) proc(['./lz4c32.' + tag, '-df', lz4, lz4 + '_d32_' + tag + '.dec']) - print(' OK') + print(' OK') # well, here, decompression has worked; but file is not yet verified # Compare all '.dec' files with test_dat decs = glob.glob('*.dec') |