mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
fix bug in 48797808a302
This commit is contained in:
parent
e06cc67c19
commit
cf0b9da988
1 changed files with 1 additions and 1 deletions
|
@ -722,7 +722,7 @@ class MmapTests(unittest.TestCase):
|
|||
except SystemError:
|
||||
self.skipTest("resizing not supported")
|
||||
self.assertEqual(m.read(14), b'')
|
||||
self.assertRaises(ValueError, m.read_byte,)
|
||||
self.assertRaises(ValueError, m.read_byte)
|
||||
self.assertRaises(ValueError, m.write_byte, 42)
|
||||
self.assertRaises(ValueError, m.write, b'abc')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue