From d8c23fd39bbe3e6d3f44ef44ffe58bee81fccaee Mon Sep 17 00:00:00 2001 From: Kate Date: Tue, 16 Jan 2018 12:36:28 +0300 Subject: [PATCH] Fix wrong formatting --- doc/en/parametrize.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/parametrize.rst b/doc/en/parametrize.rst index 7bc37ae38..991dd4b1e 100644 --- a/doc/en/parametrize.rst +++ b/doc/en/parametrize.rst @@ -123,7 +123,7 @@ To get all combinations of multiple parametrized arguments you can stack def test_foo(x, y): pass -This will run the test with the arguments set to ``x=0/y=2``,``x=1/y=2``, +This will run the test with the arguments set to ``x=0/y=2``, ``x=1/y=2``, ``x=0/y=3``, and ``x=1/y=3`` exhausting parameters in the order of the decorators. .. _`pytest_generate_tests`: