Fix failing test w/sqlcipher

This commit is contained in:
Charles Leifer 2023-01-10 10:32:42 -06:00
parent 61e9937224
commit 397e251458

View file

@ -1020,7 +1020,7 @@ class ClosedCurTests(unittest.TestCase):
class SqliteColumnTypeTests(unittest.TestCase): class SqliteColumnTypeTests(unittest.TestCase):
def setUp(self): def setUp(self):
self.cx = sqlite.connect(':memory:') self.cx = sqlite.connect(':memory:')
self.cx.execute('create table test(a text, b datetime)') self.cx.execute('create table test(a TEXT, b datetime)')
self.cx.execute('create view test_view as select * from test') self.cx.execute('create view test_view as select * from test')
def CheckDeclTypes(self): def CheckDeclTypes(self):