pre-commit: update blacken-docs 1.0.0 -> 1.6.0
This commit is contained in:
@@ -27,10 +27,10 @@ def param(*values, **kw):
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
@pytest.mark.parametrize("test_input,expected", [
|
||||
("3+5", 8),
|
||||
pytest.param("6*9", 42, marks=pytest.mark.xfail),
|
||||
])
|
||||
@pytest.mark.parametrize(
|
||||
"test_input,expected",
|
||||
[("3+5", 8), pytest.param("6*9", 42, marks=pytest.mark.xfail),],
|
||||
)
|
||||
def test_eval(test_input, expected):
|
||||
assert eval(test_input) == expected
|
||||
|
||||
|
||||
Reference in New Issue
Block a user