X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/882d8795c6ff65c02f2657e596391748d1b6b7f5:/tests/data/cases/fmtonoff3.py..HEAD:/.vim/bundle/black/tests/data/cases/static/git-favicon.png diff --git a/tests/data/cases/fmtonoff3.py b/tests/data/cases/fmtonoff3.py deleted file mode 100644 index 4e3b024..0000000 --- a/tests/data/cases/fmtonoff3.py +++ /dev/null @@ -1,35 +0,0 @@ -# fmt: off -x = [ - 1, 2, - 3, 4, -] -# fmt: on - -# fmt: off -x = [ - 1, 2, - 3, 4, -] -# fmt: on - -x = [ - 1, 2, 3, 4 -] - -# output - -# fmt: off -x = [ - 1, 2, - 3, 4, -] -# fmt: on - -# fmt: off -x = [ - 1, 2, - 3, 4, -] -# fmt: on - -x = [1, 2, 3, 4]