diff options
| author | Tim Graham <timograham@gmail.com> | 2014-04-17 20:47:54 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-04-17 20:47:54 -0400 |
| commit | fa60ac76c032aae884c3c277e89cb323a463994c (patch) | |
| tree | bd1bd22360d52be261aa44a5fb856842e1bd6552 | |
| parent | e0930608230fc7e1f1a68d51296661200857658a (diff) | |
[1.6.x] Fixed #22454 - Changed compatibility warning hint for test runner.
Backport of 214d1e1b0f from master
| -rw-r--r-- | django/core/checks/compatibility/django_1_6_0.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/checks/compatibility/django_1_6_0.py b/django/core/checks/compatibility/django_1_6_0.py index 96b29d6b77..ef182bf48f 100644 --- a/django/core/checks/compatibility/django_1_6_0.py +++ b/django/core/checks/compatibility/django_1_6_0.py @@ -18,7 +18,7 @@ def check_test_runner(): message = [ "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", + "https://docs.djangoproject.com/en/dev/releases/1.6/#new-test-runner", "for more information.", ] return ' '.join(message) |
