summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2008-02-04 22:40:52 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2008-02-04 22:40:52 +0000
commit6c73fbb4227327335be8f45f4dbf2bccd01d0918 (patch)
tree8e6e85ac2604b8affd21b6d80690b3dd8e42d6d9
parentd2f9015c1240ecff1a4ac66410360847e9ee0ef6 (diff)
downloadsqlalchemy-6c73fbb4227327335be8f45f4dbf2bccd01d0918.tar.gz
*more* tweaks to avoid DEFAULT VALUES on sqlite
-rw-r--r--test/sql/unicode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/unicode.py b/test/sql/unicode.py
index 6f035f2bf..54d453025 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()