summaryrefslogtreecommitdiff
path: root/docs/topics/testing.txt
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2008-08-28 12:22:33 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2008-08-28 12:22:33 +0000
commit3f13fa398c33d5370dc383bb3609bb7811ae6c8b (patch)
tree300a7903aa900e60f2a14c35b6c13e20c7a88dbd /docs/topics/testing.txt
parent229f2c1ca0967efe6e1de5632f98c62afea5a584 (diff)
Fixed #8578: Corrected a typo in a shell example in the testing docs. Thanks to Manuel Saelices for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8656 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics/testing.txt')
-rw-r--r--docs/topics/testing.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index 42fa1fb9c3..bc50513611 100644
--- a/docs/topics/testing.txt
+++ b/docs/topics/testing.txt
@@ -253,7 +253,7 @@ application, add the application name to the command line. For example, if your
``'myproject.animals'``, you can run the ``myproject.animals`` unit tests alone
with this command::
- # ./manage.py test animals
+ $ ./manage.py test animals
Note that we used ``animals``, not ``myproject.animals``.