diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-05-02 01:15:26 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-05-02 01:15:26 +0000 |
| commit | 5932e8649d051d2186cd06fb67f3249a11e57638 (patch) | |
| tree | 3d2db3fe6b31ac78355409b03bc340cbcc6fe5d5 /test/sql/selectable.py | |
| parent | e3460573d037e27592995277a19840be13457828 (diff) | |
| download | sqlalchemy-5932e8649d051d2186cd06fb67f3249a11e57638.tar.gz | |
- an unfortunate naming conflict
- needed sql import on and()
Diffstat (limited to 'test/sql/selectable.py')
| -rwxr-xr-x | test/sql/selectable.py | 2 |
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): |
