summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-08-23 08:07:35 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-08-23 08:07:35 +0000
commita323fd3c5e9d53b22efb8660e9dd0d666002dc09 (patch)
treeec95381faecef9e92b38c59e2f6b345eb065befb /docs/topics
parent5d4c37af7cedfc78f0f223960e0bfd26f12eaa31 (diff)
Fixed #14112 -- Various Markup fixes for the docs. Thanks to ramiro for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13628 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/testing.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index bfd1ef5e50..9c1d8b28fd 100644
--- a/docs/topics/testing.txt
+++ b/docs/topics/testing.txt
@@ -310,7 +310,7 @@ but not gracefully. No details of the tests run before the interruption will
be reported, and any test databases created by the run will not be destroyed.
Running tests outside the test runner
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+-------------------------------------
If you want to run tests outside of ``./manage.py test`` -- for example,
from a shell prompt -- you will need to set up the test
@@ -417,7 +417,7 @@ Other test conditions
---------------------
Regardless of the value of the :setting:`DEBUG` setting in your configuration
-file, all Django tests run with :setting:`DEBUG=False`. This is to ensure that
+file, all Django tests run with :setting:`DEBUG`\=False. This is to ensure that
the observed output of your code matches what will be seen in a production
setting.