From 3f13fa398c33d5370dc383bb3609bb7811ae6c8b Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 28 Aug 2008 12:22:33 +0000 Subject: [PATCH] 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 --- docs/topics/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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``.