summaryrefslogtreecommitdiff
path: root/tests/test_runner
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-05-02 21:27:11 -0400
committerTim Graham <timograham@gmail.com>2017-05-04 20:45:18 -0400
commit2dc3280254ae06ca1fe664abf55749fe12a699d4 (patch)
treed331945d510ffdaed21dc67a99967f9586ac50b2 /tests/test_runner
parent890537253cf235091816d27a5c2fb64943c8e34a (diff)
Fixed #28160 -- Prevented hiding GDAL exceptions when it's not installed.
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 3ea563d1e6..3908f0a9da 100644
--- a/tests/test_runner/test_discover_runner.py
+++ b/tests/test_runner/test_discover_runner.py
@@ -135,8 +135,8 @@ class DiscoverRunnerTest(TestCase):
"""
Tests shouldn't be discovered twice when discovering on overlapping paths.
"""
- base_app = 'gis_tests'
- sub_app = 'gis_tests.geo3d'
+ base_app = 'forms_tests'
+ sub_app = 'forms_tests.field_tests'
with self.modify_settings(INSTALLED_APPS={'append': sub_app}):
single = DiscoverRunner().build_suite([base_app]).countTestCases()
dups = DiscoverRunner().build_suite([base_app, sub_app]).countTestCases()