File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -54,8 +54,8 @@ class test_dbapi20(unittest.TestCase):
5454 """
5555 Test a database self.driver for DB API 2.0 compatibility.
5656 This implementation tests Gadfly, but the TestCase
57- is structured so that other self.drivers can subclass this
58- test case to ensure compiliance with the DB-API. It is
57+ is structured so that other self.drivers can subclass this
58+ test case to ensure compiliance with the DB-API. It is
5959 expected that this TestCase may be expanded in the future
6060 if ambiguities or edge conditions are discovered.
6161
@@ -65,9 +65,9 @@ class test_dbapi20(unittest.TestCase):
6565 self.driver, connect_args and connect_kw_args. Class specification
6666 should be as follows:
6767
68- import dbapi20
68+ import dbapi20
6969 class mytest(dbapi20.DatabaseAPI20Test):
70- [...]
70+ [...]
7171
7272 __rcs_id__ = 'Id: dbapi20.py,v 1.10 2003/10/09 03:14:14 zenzen Exp'
7373 __version__ = 'Revision: 1.10'
@@ -98,10 +98,10 @@ def tearDown(self):
9898 try :
9999 cur = con .cursor ()
100100 for ddl in (self .xddl1 , self .xddl2 ):
101- try :
101+ try :
102102 cur .execute (ddl )
103103 con .commit ()
104- except self .driver .Error :
104+ except self .driver .Error :
105105 # Assume table didn't exist. Other tests will check if
106106 # execute is busted.
107107 pass
You can’t perform that action at this time.
0 commit comments