]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
removed erroneous "lazy"
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 28 Jan 2007 23:52:53 +0000 (23:52 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 28 Jan 2007 23:52:53 +0000 (23:52 +0000)
test/orm/poly_linked_list.py

index 2f4ee96ff0da3c90166c13013a778c7894736ca6..30cda4bb6a2b2e2cfd2e370367afdee7cd125e46 100644 (file)
@@ -68,7 +68,7 @@ class PolymorphicCircularTest(testbase.ORMTest):
                                     'next': relation(Table1, 
                                         backref=backref('prev', primaryjoin=join.c.id==join.c.related_id, foreignkey=join.c.id, uselist=False), 
                                         uselist=False, primaryjoin=join.c.id==join.c.related_id),
-                                    'data':relation(mapper(Data, data), lazy=lazy)
+                                    'data':relation(mapper(Data, data))
                                     }
                             )
             table1_mapper.compile()
@@ -184,4 +184,4 @@ class PolymorphicCircularTest(testbase.ORMTest):
         assert original == forwards == backwards
 
 if __name__ == '__main__':
-    testbase.main()
\ No newline at end of file
+    testbase.main()