summaryrefslogtreecommitdiff
path: root/test/orm/test_manytomany.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/orm/test_manytomany.py')
-rw-r--r--test/orm/test_manytomany.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/orm/test_manytomany.py b/test/orm/test_manytomany.py
index db7f63565..ed9075833 100644
--- a/test/orm/test_manytomany.py
+++ b/test/orm/test_manytomany.py
@@ -107,7 +107,7 @@ class M2MTest(fixtures.MappedTest):
mapper(Place, place, properties={
'places': relationship(
Place,
- secondary=place_place,
+ secondary=place_place,
primaryjoin=place.c.place_id==place_place.c.pl1_id,
secondaryjoin=place.c.place_id==place_place.c.pl2_id,
order_by=place_place.c.pl2_id
@@ -162,7 +162,7 @@ class M2MTest(fixtures.MappedTest):
mapper(Place, place, properties={
'child_places': relationship(
Place,
- secondary=place_place,
+ secondary=place_place,
primaryjoin=place.c.place_id==place_place.c.pl1_id,
secondaryjoin=place.c.place_id==place_place.c.pl2_id,
order_by=place_place.c.pl2_id,
@@ -268,7 +268,7 @@ class M2MTest(fixtures.MappedTest):
self.tables.transition)
mapper(Place, place, properties={
- 'transitions':relationship(Transition, secondary=place_input,
+ 'transitions':relationship(Transition, secondary=place_input,
passive_updates=False)
})
mapper(Transition, transition)