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