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):