diff options
Diffstat (limited to 'django')
| -rw-r--r-- | django/core/checks/compatibility/django_1_6_0.py | 6 |
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.", ] |
