From: Mike Bayer Date: Wed, 31 May 2006 06:19:56 +0000 (+0000) Subject: tweak to join test X-Git-Tag: rel_0_2_2~27 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0d97e5b5a20d7f8d444fe376003ce1f1653bdc08;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git tweak to join test --- diff --git a/test/selectable.py b/test/selectable.py index 59f57331be..0c2aa1b56d 100755 --- a/test/selectable.py +++ b/test/selectable.py @@ -87,15 +87,10 @@ class SelectableTest(testbase.AssertMixin): def testjoin(self): a = join(table, table2) print str(a.select(use_labels=True)) - # TODO - figure out what we're trying to do here - return b = table2.alias('b') j = join(a, b) print str(j) - return - criterion = a.c.col1 == b.c.col2 - print - print str(j) + criterion = a.c.table1_col1 == b.c.col2 self.assert_(criterion.compare(j.onclause)) def testselectalias(self):