Apply formatter

This commit is contained in:
Tsuyoshi Hombashi
2021-03-21 19:59:17 +09:00
parent 95f4da5c15
commit 9dd3b4a6b4

View File

@@ -16,7 +16,12 @@ from subprocrunner import Which
class Test_Which_constructor:
@pytest.mark.parametrize(
["value", "expected"], [[0, ValueError], ["", ValueError], [None, ValueError]],
["value", "expected"],
[
[0, ValueError],
["", ValueError],
[None, ValueError],
],
)
def test_exception(self, value, expected):
with pytest.raises(expected):