* removed tailing whitespaces

This commit is contained in:
aostr 2016-06-26 06:46:09 +02:00
parent e04d9ff80b
commit 1ce4670062
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ def pytest_addoption(parser):
"(p)passed, (P)passed with output, (a)all except pP. "
"The pytest warnings are displayed at all times except when "
"--disable-pytest-warnings is set")
group._addoption('--disable-pytest-warnings', default=False,
group._addoption('--disable-pytest-warnings', default=False,
dest='disablepytestwarnings', action='store_true',
help='disable warnings summary, overrides -r w flag')
group._addoption('-l', '--showlocals',

View File

@ -613,7 +613,7 @@ def test_getreportopt():
assert getreportopt(config) == "sfxw"
config.option.reportchars = "sfxw"
config.option.disablepytestwarnings = False
config.option.disablepytestwarnings = False
assert getreportopt(config) == "sfxw"