summaryrefslogtreecommitdiff
path: root/test/sql/selectable.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2008-05-02 01:15:26 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2008-05-02 01:15:26 +0000
commit5932e8649d051d2186cd06fb67f3249a11e57638 (patch)
tree3d2db3fe6b31ac78355409b03bc340cbcc6fe5d5 /test/sql/selectable.py
parente3460573d037e27592995277a19840be13457828 (diff)
downloadsqlalchemy-5932e8649d051d2186cd06fb67f3249a11e57638.tar.gz
- an unfortunate naming conflict
- needed sql import on and()
Diffstat (limited to 'test/sql/selectable.py')
-rwxr-xr-xtest/sql/selectable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/selectable.py b/test/sql/selectable.py
index 20788fedc..d3b639767 100755
--- a/test/sql/selectable.py
+++ b/test/sql/selectable.py
@@ -233,7 +233,7 @@ class SelectableTest(TestBase, AssertsExecutionResults):
s = select([t2, t3], use_labels=True)
- self.assertRaises(exceptions.NoSuchTableError, s.join, t1)
+ self.assertRaises(exceptions.NoReferencedTableError, s.join, t1)
class PrimaryKeyTest(TestBase, AssertsExecutionResults):
def test_join_pk_collapse_implicit(self):