summaryrefslogtreecommitdiff
path: root/test/sql/test_selectable.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-09-14 11:31:33 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2011-09-14 11:31:33 -0400
commit1cf80dc5b273dc92607863bdd3af859840aa3364 (patch)
tree7529a14e1fae87a3d024fddd667efe4c757576de /test/sql/test_selectable.py
parent98a08bf207c21a4bc06c2ec6fbda9819f59dc751 (diff)
downloadsqlalchemy-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.py1
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