aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas@google.com>2016-02-23 17:45:42 +0100
committerEugene Kliuchnikov <eustas@google.com>2016-02-23 17:45:42 +0100
commitcbb0d4cd73b8af2509b5f6fe77c84af8d4d34af3 (patch)
tree77105c23132615f90b9e008bbee129f28d552f80 /python
parent30612e3a64689dfc4aa8b79b563f6bca202135a8 (diff)
downloadbrotli-cbb0d4cd73b8af2509b5f6fe77c84af8d4d34af3.zip
brotli-cbb0d4cd73b8af2509b5f6fe77c84af8d4d34af3.tar.gz
brotli-cbb0d4cd73b8af2509b5f6fe77c84af8d4d34af3.tar.bz2
Remove streaming test.
Diffstat (limited to 'python')
-rw-r--r--python/tests/custom_dictionary_test.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/python/tests/custom_dictionary_test.py b/python/tests/custom_dictionary_test.py
index b5a65d4..8fdebb7 100644
--- a/python/tests/custom_dictionary_test.py
+++ b/python/tests/custom_dictionary_test.py
@@ -33,12 +33,3 @@ for filename in INPUTS.splitlines():
uncompressed, "--custom-dictionary", filename], env=TEST_ENV)
if diff_q(filename, uncompressed) != 0:
sys.exit(1)
- # Test the streaming version
- with open(filename, "rb") as infile, \
- open(uncompressed, "wb") as outfile:
- p = Popen([PYTHON, BRO, "-q", str(quality)], stdin=infile,
- stdout=PIPE, env=TEST_ENV)
- check_call([PYTHON, BRO, "-d"], stdin=p.stdout, stdout=outfile,
- env=TEST_ENV)
- if diff_q(filename, uncompressed) != 0:
- sys.exit(1)