diff options
Diffstat (limited to 'test/orm/test_manytomany.py')
-rw-r--r-- | test/orm/test_manytomany.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/test/orm/test_manytomany.py b/test/orm/test_manytomany.py index 1bd730b22..226415e34 100644 --- a/test/orm/test_manytomany.py +++ b/test/orm/test_manytomany.py @@ -231,7 +231,16 @@ class M2MTest(fixtures.MappedTest): """test that a mapper can have two eager relationships to the same table, via two different association tables. aliases are required.""" - place_input, transition, Transition, PlaceThingy, place, place_thingy, Place, place_output = ( + ( + place_input, + transition, + Transition, + PlaceThingy, + place, + place_thingy, + Place, + place_output, + ) = ( self.tables.place_input, self.tables.transition, self.classes.Transition, |