Skip to content

Commit 0934155

Browse files
committed
bpo-24658: remove the requires and fix the comment
1 parent f22efe1 commit 0934155

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Lib/test/test_largefile.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,7 @@ def tearDownClass(cls):
4646
'with mode "wb"')
4747

4848
def test_large_reads_writes(self):
49-
# see issue #24658
50-
requires('largefile',
51-
'test requires %s bytes and a long time to run' % size)
52-
49+
# bpo-24658: Test that a read greater than 2GB does not fail.
5350
with self.open(TESTFN, "rb") as f:
5451
self.assertEqual(len(f.read()), size + 1)
5552
self.assertEqual(f.tell(), size + 1)

0 commit comments

Comments
 (0)