From: Ikko Ashimine Date: Tue, 10 Nov 2020 12:42:36 +0000 (+0900) Subject: Fix typo in test_array.py (GH-23189) X-Git-Tag: v3.10.0a3~237 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9303b9ecc39e4e79e34d6ce7258036a9d0876046;p=thirdparty%2FPython%2Fcpython.git Fix typo in test_array.py (GH-23189) --- diff --git a/Lib/test/test_array.py b/Lib/test/test_array.py index c423f545488f..77a0c64a88e6 100644 --- a/Lib/test/test_array.py +++ b/Lib/test/test_array.py @@ -393,7 +393,7 @@ class BaseTest: a.insert(0, self.outside) self.assertEqual(list(exhit), []) # The iterator index points past the 0th position so inserting - # an element in the beggining does not make it appear. + # an element in the beginning does not make it appear. self.assertEqual(list(empit), []) self.assertEqual(list(a), [self.outside] + list(self.example))