Skip to content

Commit b96ad4e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent d628253 commit b96ad4e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/feature/test_outline.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

tests/feature/test_parametrized.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)