summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_lzma.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-10-01 03:11:04 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-10-01 03:11:04 (GMT)
commit55c9239af613682ec141bf6b2c4eb77497943088 (patch)
treeccc9268a47f8b36c879bf4f1f336b4a8f1118438 /Lib/test/test_lzma.py
parentef223a19f76101a914ccff8b4690d9e4717e109e (diff)
parent38317d3318e05832a864d413aa744a48a8975dce (diff)
downloadcpython-55c9239af613682ec141bf6b2c4eb77497943088.zip
cpython-55c9239af613682ec141bf6b2c4eb77497943088.tar.gz
cpython-55c9239af613682ec141bf6b2c4eb77497943088.tar.bz2
Issue #28275: Merge bz2 fix from 3.5 into 3.6
Diffstat (limited to 'Lib/test/test_lzma.py')
-rw-r--r--Lib/test/test_lzma.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/Lib/test/test_lzma.py b/Lib/test/test_lzma.py
index 77ca022..228db66 100644
--- a/Lib/test/test_lzma.py
+++ b/Lib/test/test_lzma.py
@@ -249,11 +249,9 @@ class CompressorDecompressorTestCase(unittest.TestCase):
def test_decompressor_bug_28275(self):
# Test coverage for Issue 28275
lzd = LZMADecompressor()
- for i in range(2):
- try:
- lzd.decompress(COMPRESSED_RAW_1)
- except LZMAError:
- pass
+ self.assertRaises(LZMAError, lzd.decompress, COMPRESSED_RAW_1)
+ # Previously, a second call could crash due to internal inconsistency
+ self.assertRaises(LZMAError, lzd.decompress, COMPRESSED_RAW_1)
# Test that LZMACompressor->LZMADecompressor preserves the input data.