diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-09-14 11:31:33 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-09-14 11:31:33 -0400 |
| commit | 1cf80dc5b273dc92607863bdd3af859840aa3364 (patch) | |
| tree | 7529a14e1fae87a3d024fddd667efe4c757576de /test/sql/test_selectable.py | |
| parent | 98a08bf207c21a4bc06c2ec6fbda9819f59dc751 (diff) | |
| download | sqlalchemy-1cf80dc5b273dc92607863bdd3af859840aa3364.tar.gz | |
- Changed the update() method on association proxy
dictionary to use a duck typing approach, i.e.
checks for "keys", to discern between update({})
and update((a, b)). Previously, passing a
dictionary that had tuples as keys would be misinterpreted
as a sequence. [ticket:2275]
Diffstat (limited to 'test/sql/test_selectable.py')
| -rw-r--r-- | test/sql/test_selectable.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/sql/test_selectable.py b/test/sql/test_selectable.py index 9c1f44e1a..4bbcf61d2 100644 --- a/test/sql/test_selectable.py +++ b/test/sql/test_selectable.py @@ -161,7 +161,6 @@ class SelectableTest(fixtures.TestBase, AssertsExecutionResults, AssertsCompiled criterion = a.c.col1 == table2.c.col2 self.assert_(criterion.compare(j.onclause)) - def test_union(self): # tests that we can correspond a column in a Select statement |
