Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4267869 + 29352c4 commit 5ef48d9Copy full SHA for 5ef48d9
1 file changed
Lib/sqlite3/test/factory.py
@@ -112,6 +112,7 @@ def CheckSqliteRowAsTuple(self):
112
self.con.row_factory = sqlite.Row
113
row = self.con.execute("select 1 as a, 2 as b").fetchone()
114
t = tuple(row)
115
+ self.assertEqual(t, (row['a'], row['b']))
116
117
def CheckSqliteRowAsDict(self):
118
"""Checks if the row object can be correctly converted to a dictionary"""
0 commit comments