Fixed E124 flake8 errors

closing bracket does not match visual indentation
This commit is contained in:
Andras Tim
2017-07-17 01:25:07 +02:00
parent 4b20b9d8d9
commit 051d76a63f
8 changed files with 13 additions and 13 deletions

View File

@@ -279,7 +279,7 @@ class TestMetafunc(object):
assert result == ["10.0-IndexError()",
"20-KeyError()",
"three-b2",
]
]
@pytest.mark.issue351
def test_idmaker_idfn_unique_names(self):
@@ -291,11 +291,11 @@ class TestMetafunc(object):
result = idmaker(("a", "b"), [pytest.param(10.0, IndexError()),
pytest.param(20, KeyError()),
pytest.param("three", [1, 2, 3]),
], idfn=ids)
], idfn=ids)
assert result == ["a-a0",
"a-a1",
"a-a2",
]
]
@pytest.mark.issue351
def test_idmaker_idfn_exception(self):