Skip to content

Commit 31210e9

Browse files
committed
test_sqlThread refactoring
1 parent b9c26fd commit 31210e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests/test_sqlthread.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def get_table_schema(self, table_name):
2929
"""Get table list of column names and value types by table name"""
3030
self.test_db.cur.execute("""PRAGMA table_info({})""".format(table_name))
3131
res = self.test_db.cur.fetchall()
32-
res = [[x[1], x[2]] for x in res]
32+
res = [[x[1], x[2].lower()] for x in res]
3333
return res
3434

3535
def execute_test_script(self, test_db_cur, file_name): # pylint: disable=W0622, redefined-builtin

0 commit comments

Comments
 (0)