1
0
mirror of https://github.com/django/django.git synced 2025-07-04 17:59:13 +00:00

[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
This commit is contained in:
Gabriel Hurley 2011-02-15 21:51:27 +00:00
parent 551da285db
commit ddc9cefc21

View File

@ -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):