Fixed #7962 -- Corrected typo in testing docs. Thanks to cgod for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8078 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2008-07-26 01:12:46 +00:00
parent a1fda7e1b0
commit cdc6415fdf
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ frameworks are:
import unittest
class MyFuncTestCase(unittest.TestCase)
class MyFuncTestCase(unittest.TestCase):
def testBasic(self):
a = ['larry', 'curly', 'moe']
self.assertEquals(my_func(a, 0), 'larry')