]> granicus.if.org Git - python/commitdiff
#18566: Whitespace
authorTerry Jan Reedy <tjreedy@udel.edu>
Wed, 16 Apr 2014 03:44:10 +0000 (23:44 -0400)
committerTerry Jan Reedy <tjreedy@udel.edu>
Wed, 16 Apr 2014 03:44:10 +0000 (23:44 -0400)
Doc/library/unittest.rst

index 999ae6a0899175e79edca1bdec4d886f813a4500..d82c407df78ecf9154a7ddf529331d0434d0428d 100644 (file)
@@ -719,8 +719,8 @@ Test cases
    .. method:: setUp()
 
       Method called to prepare the test fixture.  This is called immediately
-      before calling the test method; other than :exc:`AssertionError` or :exc:`SkipTest`, 
-      any exception raised by this method will be considered an error rather than 
+      before calling the test method; other than :exc:`AssertionError` or :exc:`SkipTest`,
+      any exception raised by this method will be considered an error rather than
       a test failure. The default implementation does nothing.
 
 
@@ -729,9 +729,9 @@ Test cases
       Method called immediately after the test method has been called and the
       result recorded.  This is called even if the test method raised an
       exception, so the implementation in subclasses may need to be particularly
-      careful about checking internal state.  Any exception, other than :exc:`AssertionError` 
-      or :exc:`SkipTest`, raised by this method will be considered an error rather than a 
-      test failure.  This method will only be called if the :meth:`setUp` succeeds, 
+      careful about checking internal state.  Any exception, other than :exc:`AssertionError`
+      or :exc:`SkipTest`, raised by this method will be considered an error rather than a
+      test failure.  This method will only be called if the :meth:`setUp` succeeds,
       regardless of the outcome of the test method. The default implementation does nothing.