diff options
| -rw-r--r-- | test/orm/test_mapper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/test_mapper.py b/test/orm/test_mapper.py index 88237a951..487ec066f 100644 --- a/test/orm/test_mapper.py +++ b/test/orm/test_mapper.py @@ -397,7 +397,7 @@ class MapperTest(_fixtures.FixtureTest, AssertsCompiledSQL): (relationship, (Address,)), (composite, (MyComposite, 'id', 'name')) ]: - obj = constructor(*args, info={"x": "y"}) + obj = constructor(info={"x": "y"}, *args) eq_(obj.info, {"x": "y"}) obj.info["q"] = "p" eq_(obj.info, {"x": "y", "q": "p"}) |
