Fixed E121 flake8 errors

continuation line under-indented for hanging indent
This commit is contained in:
Andras Tim
2017-07-17 01:25:07 +02:00
parent 64a4b9058c
commit 0be97624b7
7 changed files with 22 additions and 24 deletions

View File

@@ -2659,18 +2659,16 @@ class TestShowFixtures(object):
def test_show_fixtures(self, testdir):
result = testdir.runpytest("--fixtures")
result.stdout.fnmatch_lines([
"*tmpdir*",
"*temporary directory*",
]
)
"*tmpdir*",
"*temporary directory*",
])
def test_show_fixtures_verbose(self, testdir):
result = testdir.runpytest("--fixtures", "-v")
result.stdout.fnmatch_lines([
"*tmpdir*--*tmpdir.py*",
"*temporary directory*",
]
)
"*tmpdir*--*tmpdir.py*",
"*temporary directory*",
])
def test_show_fixtures_testmodule(self, testdir):
p = testdir.makepyfile('''