From abc997154496da1232ba0228dea5bbfcfed579f9 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 25 Feb 2007 01:24:33 +0000 Subject: [PATCH] fix typo --- test/sql/select.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 -- 2.47.2