From 903fd144ffd5feeed08ea26ddafd3ebec2f8451e Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Thu, 9 Jan 2014 22:27:23 +0100 Subject: [PATCH] doc: fix desc for `parametrize` - the parameter is called `expected`, not `output` - s/that that/that/ --- doc/en/parametrize.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/en/parametrize.txt b/doc/en/parametrize.txt index cccff5e1a..0c72046cb 100644 --- a/doc/en/parametrize.txt +++ b/doc/en/parametrize.txt @@ -47,8 +47,8 @@ to an expected output:: def test_eval(input, expected): assert eval(input) == expected -Here, the ``@parametrize`` decorator defines three different ``(input,output)`` -tuples so that that the ``test_eval`` function will run three times using +Here, the ``@parametrize`` decorator defines three different ``(input,expected)`` +tuples so that the ``test_eval`` function will run three times using them in turn:: $ py.test