diff options
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_ast.py | 2 | ||||
-rw-r--r-- | Lib/test/test_logging.py | 2 | ||||
-rw-r--r-- | Lib/test/test_posix.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py index 273185c3b8..4fbe5b4579 100644 --- a/Lib/test/test_ast.py +++ b/Lib/test/test_ast.py @@ -295,7 +295,7 @@ class AST_Tests(unittest.TestCase): self.assertEqual(x.body, body) def test_nodeclasses(self): - # Zero arguments constructor explicitely allowed + # Zero arguments constructor explicitly allowed x = ast.BinOp() self.assertEqual(x._fields, ('left', 'op', 'right')) diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 25ca0b8553..5e192d5df0 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -3222,7 +3222,7 @@ class BasicConfigTest(unittest.TestCase): # style defaults to % self.assertIsInstance(formatter._style, logging.PercentStyle) - # level is not explicitely set + # level is not explicitly set self.assertEqual(logging.root.level, self.original_logging_level) def test_filename(self): diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index cdd1108b35..3c863a7c83 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) |