X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/bd1e98034907463f5d86f4d87e89202dc6c34dd4..24c708eb374a856372284fb1a4f021fec292f713:/tests/test_format.py diff --git a/tests/test_format.py b/tests/test_format.py index a995bd3..d80eaa7 100644 --- a/tests/test_format.py +++ b/tests/test_format.py @@ -192,6 +192,16 @@ def test_pep_570() -> None: assert_format(source, expected, minimum_version=(3, 8)) +def test_remove_with_brackets() -> None: + source, expected = read_data("remove_with_brackets") + assert_format( + source, + expected, + black.Mode(preview=True), + minimum_version=(3, 9), + ) + + @pytest.mark.parametrize("filename", PY310_CASES) def test_python_310(filename: str) -> None: source, expected = read_data(filename)