From: Mike Bayer Date: Sun, 25 Feb 2007 01:24:33 +0000 (+0000) Subject: fix typo X-Git-Tag: rel_0_3_6~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abc997154496da1232ba0228dea5bbfcfed579f9;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix typo --- diff --git a/test/sql/select.py b/test/sql/select.py index 14a5009f10..a4e863dae0 100644 --- a/test/sql/select.py +++ b/test/sql/select.py @@ -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