diff --git a/tests/feature/test_outline.py b/tests/feature/test_outline.py index 90daeca0..4530bb13 100644 --- a/tests/feature/test_outline.py +++ b/tests/feature/test_outline.py @@ -109,7 +109,7 @@ def test_disallow_free_example_params(testdir): from pytest_bdd import scenario @scenario( - "outline.feature", + "outline.feature", "Outlined with wrong examples", allow_example_free_variables=False ) @@ -198,7 +198,7 @@ def test_wrongly_outlined_parameters_not_a_subset_of_examples(testdir): @scenario("outline.feature", "Outlined with wrong examples", allow_step_free_variables=False) def test_outline(request): pass - + @then(parsers.parse('I should have cucumbers in my bucket')) def stepdef(left, right): pass diff --git a/tests/feature/test_parametrized.py b/tests/feature/test_parametrized.py index 50a32a9d..13c2a675 100644 --- a/tests/feature/test_parametrized.py +++ b/tests/feature/test_parametrized.py @@ -103,11 +103,11 @@ def test_outlining_using_fixtures(testdir): @pytest.fixture def start(): return 12 - + @pytest.fixture def eat(): return 5 - + @pytest.fixture def left(): return 7