Skip to content

Commit f172bd6

Browse files
authored
Merge branch 'master' into then-when-target-fixture
2 parents 2716593 + 775b6dc commit f172bd6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/psf/black
5-
rev: 21.4b0
5+
rev: 21.6b0
66
hooks:
77
- id: black
88
- repo: https://github.com/pre-commit/pre-commit-hooks
9-
rev: v3.4.0
9+
rev: v4.0.1
1010
hooks:
1111
- id: trailing-whitespace
1212
- id: end-of-file-fixer
1313
- id: check-yaml
1414
- id: check-added-large-files
1515
- repo: https://github.com/asottile/pyupgrade
16-
rev: v2.13.0
16+
rev: v2.19.4
1717
hooks:
1818
- id: pyupgrade
1919
args: [--py36-plus]

pytest_bdd/scenario.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def decorator(*args):
163163
@pytest.mark.usefixtures(*function_args)
164164
def scenario_wrapper(request):
165165
_execute_scenario(feature, scenario, request)
166-
return fn(*[request.getfixturevalue(arg) for arg in args])
166+
return fn(*(request.getfixturevalue(arg) for arg in args))
167167

168168
for param_set in scenario.get_params():
169169
if param_set:

0 commit comments

Comments
 (0)