From: Konstantin Popov Date: Wed, 15 Sep 2021 20:09:08 +0000 (+0300) Subject: Fix typo in Lib/sqlite3/test/test_types.py (GH-28226) X-Git-Tag: v3.11.0a1~162 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d081eab7df176453c9834b852a579e1ada0354b2;p=thirdparty%2FPython%2Fcpython.git Fix typo in Lib/sqlite3/test/test_types.py (GH-28226) preceeding -> preceding Co-authored-by: Ɓukasz Langa --- diff --git a/Lib/sqlite3/test/test_types.py b/Lib/sqlite3/test/test_types.py index 396f153a75f2..0cfb72c5f099 100644 --- a/Lib/sqlite3/test/test_types.py +++ b/Lib/sqlite3/test/test_types.py @@ -350,7 +350,7 @@ class ColNamesTests(unittest.TestCase): self.assertEqual(val, "") # 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):