Skip to content

Commit b44d044

Browse files
aiskvstinner
andauthored
Update Lib/test/test_mmap.py
Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent e4ab905 commit b44d044

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_mmap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def test_access_parameter(self):
184184
if hasattr(m, 'resize'):
185185
# Ensuring that readonly mmap can't be resized
186186
with self.assertRaises(TypeError):
187-
m.resize(2*mapsize)
187+
m.resize(2 * mapsize)
188188
with open(TESTFN, "rb") as fp:
189189
self.assertEqual(fp.read(), b'a'*mapsize,
190190
"Readonly memory map data file was modified")

0 commit comments

Comments
 (0)