File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ def test_disallow_free_example_params(testdir):
109109 from pytest_bdd import scenario
110110
111111 @scenario(
112- "outline.feature",
112+ "outline.feature",
113113 "Outlined with wrong examples",
114114 allow_example_free_variables=False
115115 )
@@ -158,7 +158,7 @@ def test_outline_has_subset_of_parameters(testdir):
158158
159159 @scenario(
160160 "outline.feature", "
161- Outlined with subset of examples",
161+ Outlined with subset of examples",
162162 allow_example_free_variables=True
163163 )
164164 def test_outline(request):
@@ -202,7 +202,7 @@ def test_wrongly_outlined_parameters_not_a_subset_of_examples(testdir):
202202 @scenario("outline.feature", "Outlined with wrong examples", allow_step_free_variables=False)
203203 def test_outline(request):
204204 pass
205-
205+
206206 @then(parsers.parse('I should have <left> cucumbers in my <right> bucket'))
207207 def stepdef(left, right):
208208 pass
Original file line number Diff line number Diff line change @@ -103,11 +103,11 @@ def test_outlining_using_fixtures(testdir):
103103 @pytest.fixture
104104 def start():
105105 return 12
106-
106+
107107 @pytest.fixture
108108 def eat():
109109 return 5
110-
110+
111111 @pytest.fixture
112112 def left():
113113 return 7
You can’t perform that action at this time.
0 commit comments