Fixed linting
This commit is contained in:
parent
51fb11c1d1
commit
5e0e12d69b
|
@ -709,14 +709,14 @@ class TestTerminalFunctional:
|
||||||
result = testdir.runpytest("--no-header")
|
result = testdir.runpytest("--no-header")
|
||||||
verinfo = ".".join(map(str, sys.version_info[:3]))
|
verinfo = ".".join(map(str, sys.version_info[:3]))
|
||||||
result.stdout.no_fnmatch_line(
|
result.stdout.no_fnmatch_line(
|
||||||
"platform %s -- Python %s*pytest-%s*py-%s*pluggy-%s"
|
"platform %s -- Python %s*pytest-%s*py-%s*pluggy-%s"
|
||||||
% (
|
% (
|
||||||
sys.platform,
|
sys.platform,
|
||||||
verinfo,
|
verinfo,
|
||||||
pytest.__version__,
|
pytest.__version__,
|
||||||
py.__version__,
|
py.__version__,
|
||||||
pluggy.__version__,
|
pluggy.__version__,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if request.config.pluginmanager.list_plugin_distinfo():
|
if request.config.pluginmanager.list_plugin_distinfo():
|
||||||
result.stdout.no_fnmatch_line("plugins: *")
|
result.stdout.no_fnmatch_line("plugins: *")
|
||||||
|
|
Loading…
Reference in New Issue