Skip to content

Commit 3d7fe38

Browse files
committed
bpo-24658: rename the test method
1 parent a8c0aa1 commit 3d7fe38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_largefile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def tearDownClass(cls):
4545
raise cls.failureException('File was not truncated by opening '
4646
'with mode "wb"')
4747

48-
def test_large_reads_writes(self):
48+
def test_large_read(self):
4949
# bpo-24658: Test that a read greater than 2GB does not fail.
5050
with self.open(TESTFN, "rb") as f:
5151
self.assertEqual(len(f.read()), size + 1)

0 commit comments

Comments
 (0)