Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 833ad0e

Browse files
committed
Fix awkwardly rendered sentence.
1 parent fb2d167 commit 833ad0e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Doc/library/unittest.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,9 +352,9 @@ Organizing test code
352352

353353
The basic building blocks of unit testing are :dfn:`test cases` --- single
354354
scenarios that must be set up and checked for correctness. In :mod:`unittest`,
355-
test cases are represented by instances of :mod:`unittest`'s :class:`TestCase`
356-
class. To make your own test cases you must write subclasses of
357-
:class:`TestCase`, or use :class:`FunctionTestCase`.
355+
test cases are represented by :class:`unittest.TestCase` instances.
356+
To make your own test cases you must write subclasses of
357+
:class:`TestCase` or use :class:`FunctionTestCase`.
358358

359359
An instance of a :class:`TestCase`\ -derived class is an object that can
360360
completely run a single test method, together with optional set-up and tidy-up

0 commit comments

Comments
 (0)