summaryrefslogtreecommitdiff
path: root/test/orm/inheritance/test_single.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/orm/inheritance/test_single.py')
-rw-r--r--test/orm/inheritance/test_single.py20
1 files changed, 18 insertions, 2 deletions
diff --git a/test/orm/inheritance/test_single.py b/test/orm/inheritance/test_single.py
index b1eb7bb8d..2db1cfb50 100644
--- a/test/orm/inheritance/test_single.py
+++ b/test/orm/inheritance/test_single.py
@@ -633,7 +633,15 @@ class RelationshipToSingleTest(
pass
def test_of_type(self):
- JuniorEngineer, Company, companies, Manager, Employee, employees, Engineer = (
+ (
+ JuniorEngineer,
+ Company,
+ companies,
+ Manager,
+ Employee,
+ employees,
+ Engineer,
+ ) = (
self.classes.JuniorEngineer,
self.classes.Company,
self.tables.companies,
@@ -1044,7 +1052,15 @@ class RelationshipToSingleTest(
)
def test_relationship_to_subclass(self):
- JuniorEngineer, Company, companies, Manager, Employee, employees, Engineer = (
+ (
+ JuniorEngineer,
+ Company,
+ companies,
+ Manager,
+ Employee,
+ employees,
+ Engineer,
+ ) = (
self.classes.JuniorEngineer,
self.classes.Company,
self.tables.companies,