diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-02-25 01:24:33 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-02-25 01:24:33 +0000 |
| commit | abc997154496da1232ba0228dea5bbfcfed579f9 (patch) | |
| tree | cd4f2e18e855246185d6561e1062c77de3a004c1 /test/sql | |
| parent | 777037d46d57f853819e36aad5147a32e244b9cb (diff) | |
| download | sqlalchemy-abc997154496da1232ba0228dea5bbfcfed579f9.tar.gz | |
fix typo
Diffstat (limited to 'test/sql')
| -rw-r--r-- | test/sql/select.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/sql/select.py b/test/sql/select.py index 14a5009f1..a4e863dae 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 |
