]> granicus.if.org Git - python/commitdiff
unittest documentation: Spell pytest without the dot (GH-9820)
authorAndreas Pelme <andreas@pelme.se>
Sat, 27 Oct 2018 18:09:12 +0000 (20:09 +0200)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 27 Oct 2018 18:09:12 +0000 (11:09 -0700)
Referring to ``pytest`` as ``py.test`` is deprecated.

Doc/library/unittest.rst

index b35a724fc5403a28df67662fa975049730408a6b..1153459029ceaa8c667fdd406d0d58c8a9189caa 100644 (file)
@@ -56,7 +56,7 @@ test runner
       Kent Beck's original paper on testing frameworks using the pattern shared
       by :mod:`unittest`.
 
-   `Nose <https://nose.readthedocs.io/>`_ and `py.test <https://docs.pytest.org/>`_
+   `Nose <https://nose.readthedocs.io/>`_ and `pytest <https://docs.pytest.org/>`_
       Third-party unittest frameworks with a lighter-weight syntax for writing
       tests.  For example, ``assert func(10) == 42``.