Browse Source

Consistent importing

Ewoud Kohl van Wijngaarden 13 years ago
parent
commit
1a5685f113
1 changed files with 3 additions and 1 deletions
  1. 3 1
      netfields/tests.py

+ 3 - 1
netfields/tests.py

@@ -3,7 +3,9 @@ from IPy import IP
 from django.db import IntegrityError
 from django.test import TestCase
 
-from .models import *
+from netfields.models import (CidrTestModel, InetTestModel, NullCidrTestModel,
+                              NullInetTestModel)
+
 
 class BaseTestCase(object):
     select = 'SELECT "table"."id", "table"."field" FROM "table" '