diff options
| author | Justin Bronn <jbronn@gmail.com> | 2012-10-05 15:51:45 -0700 |
|---|---|---|
| committer | Justin Bronn <jbronn@gmail.com> | 2012-10-05 15:51:45 -0700 |
| commit | 5a64bd38e61aeeaf4476a42aca06654f5ce6e429 (patch) | |
| tree | c33acc4eabe172d0cf868feac5c940e8279b5724 | |
| parent | 065b52f18e7016b385feb8ad3de5dafb72ad202d (diff) | |
Forgot to import `unittest` from `django.utils`.
| -rw-r--r-- | django/contrib/gis/tests/layermap/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/gis/tests/layermap/tests.py b/django/contrib/gis/tests/layermap/tests.py index 7c1d99520d..557bdf9117 100644 --- a/django/contrib/gis/tests/layermap/tests.py +++ b/django/contrib/gis/tests/layermap/tests.py @@ -1,7 +1,6 @@ from __future__ import absolute_import import os -import unittest from copy import copy from decimal import Decimal @@ -12,6 +11,7 @@ from django.contrib.gis.utils.layermapping import (LayerMapping, LayerMapError, from django.db import router from django.conf import settings from django.test import TestCase +from django.utils import unittest from .models import ( City, County, CountyFeat, Interstate, ICity1, ICity2, Invalid, State, |
