Skip to content

Commit 1d0747d

Browse files
committed
Fix name for to_dict() test
1 parent 91f1805 commit 1d0747d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1047,7 +1047,7 @@ def test_use_after_close(self):
10471047
with self.assertRaises(InterfaceError) as cm:
10481048
cur.fetchone()
10491049
self.assertTupleEqual(cm.exception.args, ('Cannot fetch from cursor that did not executed a statement.',))
1050-
def to_dict(self):
1050+
def test_to_dict(self):
10511051
cmd = 'select * from country'
10521052
sample = {'COUNTRY': 'USA', 'CURRENCY': 'Dollar'}
10531053
with self.con.cursor() as cur:

0 commit comments

Comments
 (0)