diff options
| author | Gabriel Hurley <gabehr@gmail.com> | 2011-02-15 21:51:27 +0000 |
|---|---|---|
| committer | Gabriel Hurley <gabehr@gmail.com> | 2011-02-15 21:51:27 +0000 |
| commit | ddc9cefc217f0cd0a2c3a6d6704bdc68a663ad92 (patch) | |
| tree | 16c17f643e9fa050bcce67c4314e5b43f61f7602 | |
| parent | 551da285db768364e9111e6ad0ec368b63bb8377 (diff) | |
[1.2.X] Fixed #15285 -- Corrected an erroneous import statement in the testing docs. Thanks to kamal.mustafa for the report.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15543 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/topics/testing.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt index 6ee6b116c8..5825a99cd7 100644 --- a/docs/topics/testing.txt +++ b/docs/topics/testing.txt @@ -82,7 +82,7 @@ places: Here is an example ``unittest.TestCase`` subclass:: - from django.utils import unittest + import unittest from myapp.models import Animal class AnimalTestCase(unittest.TestCase): |
