summaryrefslogtreecommitdiffstats
path: root/Doc/library/unittest.rst
diff options
context:
space:
mode:
authorSanyam Khurana <8039608+CuriousLearner@users.noreply.github.com>2017-12-06 16:39:33 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2017-12-06 16:39:33 (GMT)
commit1b4587a2462fc05a14be87123083322103a1f55b (patch)
treec89b0a1f6455ad4fbb7daed04576ff450cd5941f /Doc/library/unittest.rst
parent6bf992a1ac6f3f4d0f83ead9c6403a76afdbe6eb (diff)
downloadcpython-1b4587a2462fc05a14be87123083322103a1f55b.zip
cpython-1b4587a2462fc05a14be87123083322103a1f55b.tar.gz
cpython-1b4587a2462fc05a14be87123083322103a1f55b.tar.bz2
bpo-25910: Fixes redirection from http to https (#4674)
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r--Doc/library/unittest.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index 4755488..93ccd0f 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -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.org/en/latest/>`_ and `py.test <http://pytest.org>`_
+ `Nose <https://nose.readthedocs.io/>`_ and `py.test <https://docs.pytest.org/>`_
Third-party unittest frameworks with a lighter-weight syntax for writing
tests. For example, ``assert func(10) == 42``.