summaryrefslogtreecommitdiff
path: root/tests/test_runner
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-02-10 10:07:44 -0500
committerTim Graham <timograham@gmail.com>2015-02-11 10:29:54 -0500
commitad0be620aece4dde2f94383426c284f4afef9fbc (patch)
treea3539cd1368e540f2022d3f6d351473addce9ffe /tests/test_runner
parent5ab327a3894c26f57baabe14084bcce2a71b8af8 (diff)
Moved contrib.gis tests out of contrib.
Diffstat (limited to 'tests/test_runner')
-rw-r--r--tests/test_runner/test_discover_runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_runner/test_discover_runner.py b/tests/test_runner/test_discover_runner.py
index 758f2d1198..70117f0327 100644
--- a/tests/test_runner/test_discover_runner.py
+++ b/tests/test_runner/test_discover_runner.py
@@ -121,9 +121,9 @@ class DiscoverRunnerTest(TestCase):
"""
Tests shouldn't be discovered twice when discovering on overlapping paths.
"""
- single = DiscoverRunner().build_suite(["django.contrib.gis"]).countTestCases()
+ single = DiscoverRunner().build_suite(["gis_tests"]).countTestCases()
dups = DiscoverRunner().build_suite(
- ["django.contrib.gis", "django.contrib.gis.tests.geo3d"]).countTestCases()
+ ["gis_tests", "gis_tests.geo3d"]).countTestCases()
self.assertEqual(single, dups)
def test_reverse(self):