]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix to oeprator test for new parenthesized rules
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 2 Apr 2006 04:09:05 +0000 (04:09 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 2 Apr 2006 04:09:05 +0000 (04:09 +0000)
test/select.py

index c61b332511bbfe159931e783d7227df63c32a879..9c260c324387d7155d7a846deea5c8012d40d561 100644 (file)
@@ -210,7 +210,7 @@ sq.myothertable_othername AS sq_myothertable_othername FROM (" + sqstring + ") A
         )
         
         self.runtest(
-            literal("a") + literal("b") * literal("c"), ":literal + :liter_1 * :liter_2", db
+            literal("a") + literal("b") * literal("c"), ":literal + (:liter_1 * :liter_2)", db
         )
 
     def testmultiparam(self):