summaryrefslogtreecommitdiff
path: root/test/proxy_engine.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-03-31 02:25:59 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-03-31 02:25:59 +0000
commit1a5e65c14f11ea2d88e2a00cea6cbd82f371e385 (patch)
tree73ccfa9c96954de8c11afe19efb940032166fb6a /test/proxy_engine.py
parentfc9889280221e2678c5d405e45bec14a6eef5acb (diff)
downloadsqlalchemy-1a5e65c14f11ea2d88e2a00cea6cbd82f371e385.tar.gz
Jonas Borgström's fantastic SelectRsults patch that adds dynamic list argument support to the mapper.select() methd. associated unit test tweaks and mapper integration.
Diffstat (limited to 'test/proxy_engine.py')
-rw-r--r--test/proxy_engine.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/proxy_engine.py b/test/proxy_engine.py
index 170e526d9..cd01272b5 100644
--- a/test/proxy_engine.py
+++ b/test/proxy_engine.py
@@ -96,7 +96,7 @@ class ThreadProxyTest(PersistTest):
try:
trans = objectstore.begin()
- all = User.select()[:]
+ all = User.select()[:].list()
assert all == []
u = User()