Fix typo in Lib/sqlite3/test/test_types.py (GH-28226)

preceeding -> preceding

Co-authored-by: Łukasz Langa <lukasz@langa.pl>
This commit is contained in:
Konstantin Popov 2021-09-15 23:09:08 +03:00 committed by GitHub
parent 4b30aaa0c9
commit d081eab7df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ def test_col_name(self):
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):