File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1141,7 +1141,7 @@ def fixture(
1141
1141
params = params ,
1142
1142
autouse = autouse ,
1143
1143
ids = ids ,
1144
- name = name
1144
+ name = name ,
1145
1145
)
1146
1146
scope = arguments .get ("scope" )
1147
1147
params = arguments .get ("params" )
@@ -1179,7 +1179,7 @@ def yield_fixture(
1179
1179
params = params ,
1180
1180
autouse = autouse ,
1181
1181
ids = ids ,
1182
- name = name
1182
+ name = name ,
1183
1183
)
1184
1184
1185
1185
Original file line number Diff line number Diff line change @@ -439,7 +439,7 @@ def test_hello(capsys):
439
439
out, err = capsys.readouterr()
440
440
assert out.startswith("42")
441
441
""" ,
442
- * opt
442
+ * opt ,
443
443
)
444
444
reprec .assertoutcome (passed = 1 )
445
445
Original file line number Diff line number Diff line change @@ -702,7 +702,7 @@ def pytest_sessionstart(session):
702
702
config = session.config
703
703
terminal_plugin.append(bool(config.pluginmanager.get_plugin("terminalreporter")))
704
704
"""
705
- }
705
+ },
706
706
)
707
707
testdir .syspathinsert ()
708
708
result = testdir .runpytest ("-p" , "myplugin" , str (p1 ))
@@ -781,7 +781,7 @@ def pytest_addoption(parser):
781
781
782
782
testdir .makefile (
783
783
".ini" ,
784
- ** {"pytest" : "[pytest]\n foo = root" , "subdir/pytest" : "[pytest]\n foo = subdir" }
784
+ ** {"pytest" : "[pytest]\n foo = root" , "subdir/pytest" : "[pytest]\n foo = subdir" },
785
785
)
786
786
787
787
testdir .makepyfile (
You can’t perform that action at this time.
0 commit comments