summaryrefslogtreecommitdiff
path: root/test/orm/test_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/orm/test_utils.py')
-rw-r--r--test/orm/test_utils.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/orm/test_utils.py b/test/orm/test_utils.py
index 23372fa2a..5e3f51606 100644
--- a/test/orm/test_utils.py
+++ b/test/orm/test_utils.py
@@ -216,17 +216,21 @@ class AliasedClassTest(fixtures.TestBase, AssertsCompiledSQL):
eq_(
Point.x_alone._annotations,
{
+ "entity_namespace": point_mapper,
"parententity": point_mapper,
"parentmapper": point_mapper,
"orm_key": "x_alone",
+ "compile_state_plugin": "orm",
},
)
eq_(
Point.x._annotations,
{
+ "entity_namespace": point_mapper,
"parententity": point_mapper,
"parentmapper": point_mapper,
"orm_key": "x",
+ "compile_state_plugin": "orm",
},
)