Parcourir la source

Consistent importing

Ewoud Kohl van Wijngaarden il y a 13 ans
Parent
commit
1a5685f113
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  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" '