diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2022-01-22 19:10:34 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-02-05 18:54:55 +0100 |
| commit | b06961a519c7494d0d0509a9eadd6bbf72b9bbf5 (patch) | |
| tree | cd5c95e9b2ea4fd2231272a925dd938f7604f031 /tests/indent/cpp_spec.lua | |
| parent | indents(c): add zero_indent for #if (diff) | |
| download | nvim-treesitter-b06961a519c7494d0d0509a9eadd6bbf72b9bbf5.tar nvim-treesitter-b06961a519c7494d0d0509a9eadd6bbf72b9bbf5.tar.gz nvim-treesitter-b06961a519c7494d0d0509a9eadd6bbf72b9bbf5.tar.bz2 nvim-treesitter-b06961a519c7494d0d0509a9eadd6bbf72b9bbf5.tar.lz nvim-treesitter-b06961a519c7494d0d0509a9eadd6bbf72b9bbf5.tar.xz nvim-treesitter-b06961a519c7494d0d0509a9eadd6bbf72b9bbf5.tar.zst nvim-treesitter-b06961a519c7494d0d0509a9eadd6bbf72b9bbf5.zip | |
fix(indents): re-parse before each indent
Diffstat (limited to 'tests/indent/cpp_spec.lua')
| -rw-r--r-- | tests/indent/cpp_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/indent/cpp_spec.lua b/tests/indent/cpp_spec.lua index b3f394375..7ac69e2a6 100644 --- a/tests/indent/cpp_spec.lua +++ b/tests/indent/cpp_spec.lua @@ -22,7 +22,7 @@ describe("indent C++:", function() end) describe("new line:", function() - run:new_line("cpp/access.cpp", { on_line = 3, text = "protected:", indent = 0 }, "expected failure", XFAIL) + run:new_line("cpp/access.cpp", { on_line = 3, text = "protected:", indent = 0 }) run:new_line("cpp/class.cpp", { on_line = 2, text = "using T = int;", indent = 4 }) run:new_line("cpp/stream.cpp", { on_line = 5, text = "<< x + 3", indent = 8 }) @@ -34,7 +34,7 @@ describe("indent C++:", function() run:new_line("c/cond.c", { on_line = 9, text = "x++;", indent = 4 }) run:new_line("c/expr.c", { on_line = 10, text = "2 *", indent = 8 }) run:new_line("c/func.c", { on_line = 17, text = "int z,", indent = 4 }) - run:new_line("c/label.c", { on_line = 3, text = "normal:", indent = 0 }, "expected failure", XFAIL) + run:new_line("c/label.c", { on_line = 3, text = "normal:", indent = 0 }) run:new_line("c/loop.c", { on_line = 3, text = "x++;", indent = 8 }) run:new_line("c/preproc_cond.c", { on_line = 5, text = "x++;", indent = 4 }) run:new_line("c/preproc_func.c", { on_line = 3, text = "x++; \\", indent = 8 }, "expected failure", XFAIL) |
