summaryrefslogtreecommitdiff
path: root/docs/releases
diff options
context:
space:
mode:
Diffstat (limited to 'docs/releases')
-rw-r--r--docs/releases/0.96.txt2
-rw-r--r--docs/releases/1.1-alpha-1.txt2
-rw-r--r--docs/releases/1.1-beta-1.txt2
-rw-r--r--docs/releases/1.1.txt4
4 files changed, 5 insertions, 5 deletions
diff --git a/docs/releases/0.96.txt b/docs/releases/0.96.txt
index a608629957..a00f878df3 100644
--- a/docs/releases/0.96.txt
+++ b/docs/releases/0.96.txt
@@ -220,7 +220,7 @@ supported :doc:`serialization formats </topics/serialization>`, that will be
loaded into your database at the start of your tests. This makes testing with
real data much easier.
-See :doc:`the testing documentation </topics/testing>` for the full details.
+See :doc:`the testing documentation </topics/testing/index>` for the full details.
Improvements to the admin interface
-----------------------------------
diff --git a/docs/releases/1.1-alpha-1.txt b/docs/releases/1.1-alpha-1.txt
index 10b0d5d71e..c8ac56cf48 100644
--- a/docs/releases/1.1-alpha-1.txt
+++ b/docs/releases/1.1-alpha-1.txt
@@ -51,7 +51,7 @@ Performance improvements
.. currentmodule:: django.test
-Tests written using Django's :doc:`testing framework </topics/testing>` now run
+Tests written using Django's :doc:`testing framework </topics/testing/index>` now run
dramatically faster (as much as 10 times faster in many cases).
This was accomplished through the introduction of transaction-based tests: when
diff --git a/docs/releases/1.1-beta-1.txt b/docs/releases/1.1-beta-1.txt
index 9bac3a53f1..1555a9464a 100644
--- a/docs/releases/1.1-beta-1.txt
+++ b/docs/releases/1.1-beta-1.txt
@@ -102,7 +102,7 @@ Testing improvements
.. currentmodule:: django.test.client
A couple of small but very useful improvements have been made to the
-:doc:`testing framework </topics/testing>`:
+:doc:`testing framework </topics/testing/index>`:
* The test :class:`Client` now can automatically follow redirects with the
``follow`` argument to :meth:`Client.get` and :meth:`Client.post`. This
diff --git a/docs/releases/1.1.txt b/docs/releases/1.1.txt
index 852644dee4..84af7fc1d9 100644
--- a/docs/releases/1.1.txt
+++ b/docs/releases/1.1.txt
@@ -264,14 +264,14 @@ Testing improvements
--------------------
A few notable improvements have been made to the :doc:`testing framework
-</topics/testing>`.
+</topics/testing/index>`.
Test performance improvements
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. currentmodule:: django.test
-Tests written using Django's :doc:`testing framework </topics/testing>` now run
+Tests written using Django's :doc:`testing framework </topics/testing/index>` now run
dramatically faster (as much as 10 times faster in many cases).
This was accomplished through the introduction of transaction-based tests: when