From ddc9cefc217f0cd0a2c3a6d6704bdc68a663ad92 Mon Sep 17 00:00:00 2001 From: Gabriel Hurley Date: Tue, 15 Feb 2011 21:51:27 +0000 Subject: [PATCH] [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 --- 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 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):