From 1cf80dc5b273dc92607863bdd3af859840aa3364 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 14 Sep 2011 11:31:33 -0400 Subject: - 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] --- test/sql/test_selectable.py | 1 - 1 file changed, 1 deletion(-) (limited to 'test/sql') 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 -- cgit v1.2.1