summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2013-10-08 10:00:39 +0800
committerRussell Keith-Magee <russell@keith-magee.com>2013-10-08 10:02:08 +0800
commit7f0fdffd07df71409fc44a3a039c25bf01ca1310 (patch)
tree344fc83661a8f397b29569c2e5463c6e1266840e /django
parent563b5c20007b993c8ab8d88f9083ab5df4b3606a (diff)
[1.6.x] Refs #21197 -- Clarified upgrade check message.
Thanks to Carl and Shai for the discussion. Backport of 8ff4303 from master.
Diffstat (limited to 'django')
-rw-r--r--django/core/checks/compatibility/django_1_6_0.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/django/core/checks/compatibility/django_1_6_0.py b/django/core/checks/compatibility/django_1_6_0.py
index e38b2d32ec..96b29d6b77 100644
--- a/django/core/checks/compatibility/django_1_6_0.py
+++ b/django/core/checks/compatibility/django_1_6_0.py
@@ -16,10 +16,8 @@ def check_test_runner():
if test_runner_setting == new_default:
message = [
- "You have not explicitly set 'TEST_RUNNER'. In Django 1.6,",
- "there is a new test runner ('%s')" % new_default,
- "by default. You should ensure your tests are still all",
- "running & behaving as expected. See",
+ "Django 1.6 introduced a new default test runner ('%s')" % new_default,
+ "You should ensure your tests are all running & behaving as expected. See",
"https://docs.djangoproject.com/en/dev/releases/1.6/#discovery-of-tests-in-any-test-module",
"for more information.",
]