aboutsummaryrefslogtreecommitdiff
path: root/python/tests/compress_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/tests/compress_test.py')
-rw-r--r--python/tests/compress_test.py13
1 files changed, 1 insertions, 12 deletions
diff --git a/python/tests/compress_test.py b/python/tests/compress_test.py
index 79e7097..46ff68f 100644
--- a/python/tests/compress_test.py
+++ b/python/tests/compress_test.py
@@ -14,11 +14,7 @@ class TestCompress(_test_utils.TestCase):
VARIANTS = {'quality': (1, 6, 9, 11), 'lgwin': (10, 15, 20, 24)}
def _check_decompression(self, test_data, **kwargs):
- # Only dictionary is supported as a kwarg to brotli.decompress.
- if 'dictionary' in kwargs:
- kwargs = {'dictionary': kwargs['dictionary']}
- else:
- kwargs = {}
+ kwargs = {}
# Write decompression to temp file and verify it matches the original.
temp_uncompressed = _test_utils.get_temp_uncompressed_name(test_data)
temp_compressed = _test_utils.get_temp_compressed_name(test_data)
@@ -38,13 +34,6 @@ class TestCompress(_test_utils.TestCase):
self._compress(test_data, **kwargs)
self._check_decompression(test_data, **kwargs)
- def _test_compress_custom_dictionary(self, test_data, **kwargs):
- with open(test_data, 'rb') as in_file:
- dictionary = in_file.read()
- kwargs['dictionary'] = dictionary
- self._compress(test_data, **kwargs)
- self._check_decompression(test_data, **kwargs)
-
_test_utils.generate_test_methods(TestCompress, variants=TestCompress.VARIANTS)