]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in Lib/sqlite3/test/test_types.py (GH-28226)
authorKonstantin Popov <konst.hardy@gmail.com>
Wed, 15 Sep 2021 20:09:08 +0000 (23:09 +0300)
committerGitHub <noreply@github.com>
Wed, 15 Sep 2021 20:09:08 +0000 (22:09 +0200)
preceeding -> preceding

Co-authored-by: Ɓukasz Langa <lukasz@langa.pl>
Lib/sqlite3/test/test_types.py

index 396f153a75f20c717d3bc12a48fd51b2877bc045..0cfb72c5f0999e16bca9a9b2f16b8b27221f1e4f 100644 (file)
@@ -350,7 +350,7 @@ class ColNamesTests(unittest.TestCase):
         self.assertEqual(val, "<xxx>")
 
         # Check if the stripping of colnames works. Everything after the first
-        # '[' (and the preceeding space) should be stripped.
+        # '[' (and the preceding space) should be stripped.
         self.assertEqual(self.cur.description[0][0], "x y")
 
     def test_case_in_converter_name(self):