From: Mike Bayer Date: Fri, 11 Feb 2011 05:24:38 +0000 (-0500) Subject: fix sqlite test X-Git-Tag: rel_0_7b1~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed4534ea8a003c89441064b028b0b22c5b5ea97a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix sqlite test --- diff --git a/test/dialect/test_sqlite.py b/test/dialect/test_sqlite.py index 6b84c57edd..e802f3995c 100644 --- a/test/dialect/test_sqlite.py +++ b/test/dialect/test_sqlite.py @@ -580,7 +580,7 @@ class MatchTest(TestBase, AssertsCompiledSQL): def test_expression(self): self.assert_compile(matchtable.c.title.match('somstr'), - 'matchtable.title MATCH ?') + 'matchtable.title MATCH ?', dialect=sqlite.dialect()) def test_simple_match(self): results = \