diff options
Diffstat (limited to 'Lib/test/test_posix.py')
-rw-r--r-- | Lib/test/test_posix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index cdd1108..3c863a7 100644 --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -190,7 +190,7 @@ class PosixTester(unittest.TestCase): os.write(fd, b'test') os.lseek(fd, 0, os.SEEK_SET) self.assertEqual(b'es', posix.pread(fd, 2, 1)) - # the first pread() shoudn't disturb the file offset + # the first pread() shouldn't disturb the file offset self.assertEqual(b'te', posix.read(fd, 2)) finally: os.close(fd) |