From 397e251458bc1c4f2ab9c37a6054f090287ccd03 Mon Sep 17 00:00:00 2001 From: Charles Leifer Date: Tue, 10 Jan 2023 10:32:42 -0600 Subject: [PATCH] Fix failing test w/sqlcipher --- test/dbapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dbapi.py b/test/dbapi.py index 6febf85..855d59f 100644 --- a/test/dbapi.py +++ b/test/dbapi.py @@ -1020,7 +1020,7 @@ class ClosedCurTests(unittest.TestCase): class SqliteColumnTypeTests(unittest.TestCase): def setUp(self): 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') def CheckDeclTypes(self):