Skip to content

Commit 4854c86

Browse files
committed
test_lzma: drop three passing expectedFailure markers
Remove the markers on test_decompressor_chunks_empty, test_decompressor_chunks_maxsize, and test_issue21872. Assisted-by: Grok:4.6
1 parent 0474123 commit 4854c86

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

Lib/test/test_lzma.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ def test_decompressor_chunks(self):
143143
self.assertTrue(lzd.eof)
144144
self.assertEqual(lzd.unused_data, b"")
145145

146-
@unittest.expectedFailure # TODO: RUSTPYTHON; EOFError: End of stream already reached
147146
def test_decompressor_chunks_empty(self):
148147
lzd = LZMADecompressor()
149148
out = []
@@ -159,7 +158,6 @@ def test_decompressor_chunks_empty(self):
159158
self.assertTrue(lzd.eof)
160159
self.assertEqual(lzd.unused_data, b"")
161160

162-
@unittest.expectedFailure # TODO: RUSTPYTHON; AttributeError: 'LZMADecompressor' object has no attribute 'check'
163161
def test_decompressor_chunks_maxsize(self):
164162
lzd = LZMADecompressor()
165163
max_length = 100
@@ -1352,7 +1350,6 @@ def test_tell_bad_args(self):
13521350
f.close()
13531351
self.assertRaises(ValueError, f.tell)
13541352

1355-
@unittest.expectedFailure # TODO: RUSTPYTHON; AssertionError: True is not false
13561353
def test_issue21872(self):
13571354
# sometimes decompress data incompletely
13581355

0 commit comments

Comments
 (0)