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 21:14:23 -0400
commit68ebc240a47cb235a186a01f887db318e0a55eba (patch)
treed6952ea73f9f2146635b15b66da176b1149e1c4e /tests/test_runner
parent444cdf61314e420c10f713ba7a5fa084b0b2dfd5 (diff)
[1.11.x] Fixed #28160 -- Prevented hiding GDAL exceptions when it's not installed.
Backport of 2dc3280254ae06ca1fe664abf55749fe12a699d4 from master
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()