Commit 1d560fec authored by Terry Jan Reedy's avatar Terry Jan Reedy

#18566: Whitespace

parent 1cca2379
...@@ -719,8 +719,8 @@ Test cases ...@@ -719,8 +719,8 @@ Test cases
.. method:: setUp() .. method:: setUp()
Method called to prepare the test fixture. This is called immediately Method called to prepare the test fixture. This is called immediately
before calling the test method; other than :exc:`AssertionError` or :exc:`SkipTest`, 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 any exception raised by this method will be considered an error rather than
a test failure. The default implementation does nothing. a test failure. The default implementation does nothing.
...@@ -729,9 +729,9 @@ Test cases ...@@ -729,9 +729,9 @@ Test cases
Method called immediately after the test method has been called and the Method called immediately after the test method has been called and the
result recorded. This is called even if the test method raised an result recorded. This is called even if the test method raised an
exception, so the implementation in subclasses may need to be particularly exception, so the implementation in subclasses may need to be particularly
careful about checking internal state. Any exception, other than :exc:`AssertionError` 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 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, 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. regardless of the outcome of the test method. The default implementation does nothing.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment