Spelling fixes (#112)

This commit is contained in:
Ville Skyttä
2016-09-12 00:31:28 +03:00
committed by INADA Naoki
parent 2617620e27
commit db1bb2ccb1
6 changed files with 13 additions and 13 deletions

View File

@ -80,7 +80,7 @@ class test_MySQLdb(dbapi20.DatabaseAPI20Test):
self.assertRaises(self.driver.Error,cur.fetchone)
# cursor.fetchone should raise an Error if called after
# executing a query that cannnot return rows
# executing a query that cannot return rows
self.executeDDL1(cur)
## self.assertRaises(self.driver.Error,cur.fetchone)
@ -92,7 +92,7 @@ class test_MySQLdb(dbapi20.DatabaseAPI20Test):
self.assertTrue(cur.rowcount in (-1,0))
# cursor.fetchone should raise an Error if called after
# executing a query that cannnot return rows
# executing a query that cannot return rows
cur.execute("insert into %sbooze values ('Victoria Bitter')" % (
self.table_prefix
))