summaryrefslogtreecommitdiff
path: root/tests/regressiontests/null_fk/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/regressiontests/null_fk/tests.py')
-rw-r--r--tests/regressiontests/null_fk/tests.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/regressiontests/null_fk/tests.py b/tests/regressiontests/null_fk/tests.py
index 2825cc9c8b..abcfde9391 100644
--- a/tests/regressiontests/null_fk/tests.py
+++ b/tests/regressiontests/null_fk/tests.py
@@ -1,7 +1,11 @@
-from django.test import TestCase
+from __future__ import absolute_import
+
from django.db.models import Q
+from django.test import TestCase
+
+from .models import (SystemDetails, Item, PropertyValue, SystemInfo, Forum,
+ Post, Comment)
-from regressiontests.null_fk.models import *
class NullFkTests(TestCase):