summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2008-07-26 01:12:46 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2008-07-26 01:12:46 +0000
commitcdc6415fdf21c1b5f40ab84ffdea7a4b128744c2 (patch)
treefaebd11addfa7b1166ca6cd3c904a69b3ffa5068
parenta1fda7e1b05c85191fbbafb16081c428862fba57 (diff)
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
-rw-r--r--docs/testing.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/testing.txt b/docs/testing.txt
index a322d41d6c..b7471f852b 100644
--- a/docs/testing.txt
+++ b/docs/testing.txt
@@ -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')