summaryrefslogtreecommitdiff
path: root/test/orm/mapper.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/orm/mapper.py')
-rw-r--r--test/orm/mapper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/mapper.py b/test/orm/mapper.py
index c1d422ec0..59ae025cb 100644
--- a/test/orm/mapper.py
+++ b/test/orm/mapper.py
@@ -447,7 +447,7 @@ class MapperTest(_fixtures.FixtureTest):
include_properties=('id', 'type', 'name'))
e_m = mapper(Employee, inherits=p_m, polymorphic_identity='employee',
properties={
- 'boss': relation(Manager, backref='peon')
+ 'boss': relation(Manager, backref=backref('peon', ), remote_side=t.c.id)
},
exclude_properties=('vendor_id',))