summaryrefslogtreecommitdiff
path: root/test/sql/test_selectable.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/sql/test_selectable.py')
-rw-r--r--test/sql/test_selectable.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/test_selectable.py b/test/sql/test_selectable.py
index 897d6c5ff..a467bb0a3 100644
--- a/test/sql/test_selectable.py
+++ b/test/sql/test_selectable.py
@@ -3071,7 +3071,7 @@ class AnnotationsTest(fixtures.TestBase):
# proxy_set, as corresponding_column iterates through proxy_set
# in this way
d = {}
- for col in p2._uncached_proxy_set():
+ for col in p2._uncached_proxy_list():
d.update(col._annotations)
eq_(d, {"weight": 10})
@@ -3087,7 +3087,7 @@ class AnnotationsTest(fixtures.TestBase):
proxy._proxies = [c1._annotate({"weight": 10})]
d = {}
- for col in proxy._uncached_proxy_set():
+ for col in proxy._uncached_proxy_list():
d.update(col._annotations)
eq_(d, {"weight": 10})