diff options
author | Ikko Ashimine <eltociear@gmail.com> | 2020-11-10 12:42:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-10 12:42:36 (GMT) |
commit | 9303b9ecc39e4e79e34d6ce7258036a9d0876046 (patch) | |
tree | de9209176ee39604741662fc9f28728fb9aa9bd7 /Lib/test/test_array.py | |
parent | 9e1b828265e6bfb58f1e0299bd78d8ff6347a2ba (diff) | |
download | cpython-9303b9ecc39e4e79e34d6ce7258036a9d0876046.zip cpython-9303b9ecc39e4e79e34d6ce7258036a9d0876046.tar.gz cpython-9303b9ecc39e4e79e34d6ce7258036a9d0876046.tar.bz2 |
Fix typo in test_array.py (GH-23189)
Diffstat (limited to 'Lib/test/test_array.py')
-rw-r--r-- | Lib/test/test_array.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_array.py b/Lib/test/test_array.py index c423f54..77a0c64 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)) |