summaryrefslogtreecommitdiff
path: root/tests/one_to_one/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/one_to_one/tests.py')
-rw-r--r--tests/one_to_one/tests.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/one_to_one/tests.py b/tests/one_to_one/tests.py
index 73d76d4a48..d7d5793b0a 100644
--- a/tests/one_to_one/tests.py
+++ b/tests/one_to_one/tests.py
@@ -1,10 +1,12 @@
from __future__ import unicode_literals
-from django.db import transaction, IntegrityError, connection
+from django.db import IntegrityError, connection, transaction
from django.test import TestCase
-from .models import (Bar, Favorites, HiddenPointer, ManualPrimaryKey, MultiModel,
- Place, RelatedModel, Restaurant, School, Director, Target, UndergroundBar, Waiter)
+from .models import (
+ Bar, Director, Favorites, HiddenPointer, ManualPrimaryKey, MultiModel,
+ Place, RelatedModel, Restaurant, School, Target, UndergroundBar, Waiter,
+)
class OneToOneTests(TestCase):