summaryrefslogtreecommitdiff
path: root/tests/model_inheritance_regress/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model_inheritance_regress/tests.py')
-rw-r--r--tests/model_inheritance_regress/tests.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/tests/model_inheritance_regress/tests.py b/tests/model_inheritance_regress/tests.py
index 7e1c4b81bf..6d916bf6e4 100644
--- a/tests/model_inheritance_regress/tests.py
+++ b/tests/model_inheritance_regress/tests.py
@@ -10,12 +10,14 @@ from unittest import expectedFailure
from django import forms
from django.test import TestCase
-from .models import (Place, Restaurant, ItalianRestaurant, ParkingLot,
- ParkingLot2, ParkingLot3, Supplier, Wholesaler, Child, SelfRefParent,
- SelfRefChild, ArticleWithAuthor, M2MChild, QualityControl, DerivedM,
- Person, BirthdayParty, BachelorParty, MessyBachelorParty,
- InternalCertificationAudit, BusStation, TrainStation, User, Profile,
- ParkingLot4A, ParkingLot4B, Senator)
+from .models import (
+ ArticleWithAuthor, BachelorParty, BirthdayParty, BusStation, Child,
+ DerivedM, InternalCertificationAudit, ItalianRestaurant, M2MChild,
+ MessyBachelorParty, ParkingLot, ParkingLot2, ParkingLot3, ParkingLot4A,
+ ParkingLot4B, Person, Place, Profile, QualityControl, Restaurant,
+ SelfRefChild, SelfRefParent, Senator, Supplier, TrainStation, User,
+ Wholesaler,
+)
class ModelInheritanceTest(TestCase):