From 0d97e5b5a20d7f8d444fe376003ce1f1653bdc08 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 31 May 2006 06:19:56 +0000 Subject: [PATCH] tweak to join test --- test/selectable.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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): -- 2.47.3