summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2017-10-16 05:23:12 +0200
committerGitHub <noreply@github.com>2017-10-16 05:23:12 +0200
commitae4e596b31fd0ecf8f57b94ba8b5380baba2d4a3 (patch)
tree2bf21bde9dd841389721d59d1ebe0883214fa925 /doc
parent46e30435ebad1796e54d99572d43a5b6a1961a19 (diff)
parentcfdebb3ba4c4fa56d6481495f1e01bb5867b2113 (diff)
downloadpytest-ae4e596b31fd0ecf8f57b94ba8b5380baba2d4a3.tar.gz
Merge pull request #2840 from MarSoft/patch-2
Fix typo in parametrization doc
Diffstat (limited to 'doc')
-rw-r--r--doc/en/example/parametrize.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/en/example/parametrize.rst b/doc/en/example/parametrize.rst
index b72e8e6de..ffeb5a951 100644
--- a/doc/en/example/parametrize.rst
+++ b/doc/en/example/parametrize.rst
@@ -350,7 +350,7 @@ Parametrizing test methods through per-class configuration
.. _`unittest parametrizer`: https://github.com/testing-cabal/unittest-ext/blob/master/params.py
-Here is an example ``pytest_generate_function`` function implementing a
+Here is an example ``pytest_generate_tests`` function implementing a
parametrization scheme similar to Michael Foord's `unittest
parametrizer`_ but in a lot less code::