From: Georg Brandl Date: Sun, 4 May 2008 15:45:05 +0000 (+0000) Subject: #2757: Remove spare newline. X-Git-Tag: v2.6a3~36 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bc043464461cae1812d4fb03ab81a30076090b49;p=thirdparty%2FPython%2Fcpython.git #2757: Remove spare newline. --- diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 3888904ec875..3f4a6ac186af 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -262,7 +262,6 @@ Such a working environment for the testing code is called a :dfn:`fixture`. Often, many small test cases will use the same fixture. In this case, we would end up subclassing :class:`SimpleWidgetTestCase` into many small one-method classes such as :class:`DefaultWidgetSizeTestCase`. This is time-consuming and - discouraging, so in the same vein as JUnit, :mod:`unittest` provides a simpler mechanism::