diff options
Diffstat (limited to 'tests/regressiontests/generic_relations_regress/tests.py')
| -rw-r--r-- | tests/regressiontests/generic_relations_regress/tests.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/regressiontests/generic_relations_regress/tests.py b/tests/regressiontests/generic_relations_regress/tests.py index 52731a9a43..4c0f024433 100644 --- a/tests/regressiontests/generic_relations_regress/tests.py +++ b/tests/regressiontests/generic_relations_regress/tests.py @@ -1,6 +1,9 @@ -from django.test import TestCase from django.db.models import Q -from models import * +from django.test import TestCase + +from .models import (Address, Place, Restaurant, Link, CharLink, TextLink, + Person, Contact, Note, Organization, OddRelation1, OddRelation2) + class GenericRelationTests(TestCase): |
