]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix typo
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 25 Feb 2007 01:24:33 +0000 (01:24 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 25 Feb 2007 01:24:33 +0000 (01:24 +0000)
test/sql/select.py

index 14a5009f10eed01a7e7f04258930583a6176588b..a4e863dae005e2774c5d66cb42cbe299717587be 100644 (file)
@@ -582,11 +582,11 @@ myothertable.othername != :myothertable_othername AND EXISTS (select yay from fo
                 select(
                     [table1, table2],
                     and_(table1.c.myid == table2.c.otherid,
-                    table1.c.name == bindparam('mytablename')),
-                "SELECT mytable.myid, mytable.name, mytable.description, myothertable.otherid, myothertable.othername \
-        FROM mytable, myothertable WHERE mytable.myid = myothertable.otherid AND mytable.name = :mytablename"
+                    table1.c.name == bindparam('mytablename'))),
+                "SELECT mytable.myid, mytable.name, mytable.description, myothertable.otherid, myothertable.othername FROM mytable, myothertable WHERE mytable.myid = myothertable.otherid AND mytable.name = :mytablename"
             )
-        ]:
+       ]:
+
             self.runtest(stmt, assertion)
 
         # check that the bind params sent along with a compile() call