We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9c26fd commit 31210e9Copy full SHA for 31210e9
1 file changed
src/tests/test_sqlthread.py
@@ -29,7 +29,7 @@ def get_table_schema(self, table_name):
29
"""Get table list of column names and value types by table name"""
30
self.test_db.cur.execute("""PRAGMA table_info({})""".format(table_name))
31
res = self.test_db.cur.fetchall()
32
- res = [[x[1], x[2]] for x in res]
+ res = [[x[1], x[2].lower()] for x in res]
33
return res
34
35
def execute_test_script(self, test_db_cur, file_name): # pylint: disable=W0622, redefined-builtin
0 commit comments