summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJason Kirtland <jek@discorporate.us>2007-05-03 21:51:34 +0000
committerJason Kirtland <jek@discorporate.us>2007-05-03 21:51:34 +0000
commit76a1d1276c48cb7f3eb4186d8872b1d7915d360a (patch)
tree619a4c96bbb90ff32f03f39974fced903b63f244 /test
parent5606c01d391aebca903029c5a8882ea964adc566 (diff)
downloadsqlalchemy-76a1d1276c48cb7f3eb4186d8872b1d7915d360a.tar.gz
Oops, Python 2.5 ternary operator snuck in.
Diffstat (limited to 'test')
-rw-r--r--test/ext/associationproxy.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/ext/associationproxy.py b/test/ext/associationproxy.py
index c4dd78463..b6476c836 100644
--- a/test/ext/associationproxy.py
+++ b/test/ext/associationproxy.py
@@ -32,7 +32,6 @@ class ObjectCollection(object):
class _CollectionOperations(PersistTest):
def setUp(self):
collection_class = self.collection_class
- lazy = self.lazy if hasattr(self, 'lazy') else False
metadata = BoundMetaData(db)
@@ -62,7 +61,7 @@ class _CollectionOperations(PersistTest):
self.name = name
mapper(Parent, parents_table, properties={
- '_children': relation(Child, lazy=lazy,
+ '_children': relation(Child, lazy=False,
collection_class=collection_class)})
mapper(Child, children_table)