summaryrefslogtreecommitdiff
path: root/tests/gis_tests
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2015-04-17 17:38:20 -0400
committerSimon Charette <charette.s@gmail.com>2015-05-20 13:46:13 -0400
commitbe67400b477c1b0e7e81766f41bbceed0de74bdc (patch)
treefd8e6d087082754df9159a5549bfa80e2a8c57d9 /tests/gis_tests
parente2b77aceddbda9071fcfc38f90fb50d091d0b5fc (diff)
Refs #24652 -- Used SimpleTestCase where appropriate.
Diffstat (limited to 'tests/gis_tests')
-rw-r--r--tests/gis_tests/maps/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gis_tests/maps/tests.py b/tests/gis_tests/maps/tests.py
index 3bcd38e485..c62b9e6735 100644
--- a/tests/gis_tests/maps/tests.py
+++ b/tests/gis_tests/maps/tests.py
@@ -4,7 +4,7 @@ from __future__ import unicode_literals
from unittest import skipUnless
from django.contrib.gis.geos import HAS_GEOS
-from django.test import TestCase
+from django.test import SimpleTestCase
from django.test.utils import modify_settings, override_settings
from django.utils.encoding import force_text
@@ -15,7 +15,7 @@ GOOGLE_MAPS_API_KEY = 'XXXX'
@modify_settings(
INSTALLED_APPS={'append': 'django.contrib.gis'},
)
-class GoogleMapsTest(TestCase):
+class GoogleMapsTest(SimpleTestCase):
@override_settings(GOOGLE_MAPS_API_KEY=GOOGLE_MAPS_API_KEY)
def test_google_map_scripts(self):