]> granicus.if.org Git - python/commitdiff
fix typo; thanks to Justin Watt from docs@
authorSandro Tosi <sandro.tosi@gmail.com>
Sat, 21 Jan 2012 09:59:37 +0000 (10:59 +0100)
committerSandro Tosi <sandro.tosi@gmail.com>
Sat, 21 Jan 2012 09:59:37 +0000 (10:59 +0100)
Doc/library/unittest.rst

index d2949f684b4b9d9970eda3bf8740b1489cce3e14..bdf07a40cb2edd5a4614c10a9244471318e58983 100644 (file)
@@ -376,7 +376,7 @@ The simplest :class:`TestCase` subclass will simply override the
            widget = Widget('The widget')
            self.assertEqual(widget.size(), (50, 50), 'incorrect default size')
 
-Note that in order to test something, we use the one of the :meth:`assert\*`
+Note that in order to test something, we use one of the :meth:`assert\*`
 methods provided by the :class:`TestCase` base class.  If the test fails, an
 exception will be raised, and :mod:`unittest` will identify the test case as a
 :dfn:`failure`.  Any other exceptions will be treated as :dfn:`errors`. This