From 6c73fbb4227327335be8f45f4dbf2bccd01d0918 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 4 Feb 2008 22:40:52 +0000 Subject: [PATCH] *more* tweaks to avoid DEFAULT VALUES on sqlite --- test/sql/unicode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sql/unicode.py b/test/sql/unicode.py index 6f035f2bfc..54d4530257 100644 --- a/test/sql/unicode.py +++ b/test/sql/unicode.py @@ -133,7 +133,7 @@ class EscapesDefaultsTest(testing.PersistTest): # now execute, run the sequence. it should run in u"Special_col.nextid" or similar as # a unicode object; cx_oracle asserts that this is None or a String (postgres lets it pass thru). # ensure that base.DefaultRunner is encoding. - t1.insert().execute() + t1.insert().execute(data='foo') finally: t1.drop() -- 2.47.3