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/lua_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/lua_spec.lua')
| -rw-r--r-- | tests/indent/lua_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/indent/lua_spec.lua b/tests/indent/lua_spec.lua index 2577e4837..17584a9ee 100644 --- a/tests/indent/lua_spec.lua +++ b/tests/indent/lua_spec.lua @@ -1,5 +1,5 @@ local Runner = require("tests.indent.common").Runner -local XFAIL = require("tests.indent.common").XFAIL +--local XFAIL = require("tests.indent.common").XFAIL local run = Runner:new(it, "tests/indent/lua", { tabstop = 2, @@ -19,7 +19,7 @@ describe("indent Lua:", function() describe("new line:", function() run:new_line("comment.lua", { on_line = 1, text = "line", indent = "-- " }) - run:new_line("comment.lua", { on_line = 5, text = "multiline", indent = " " }, "expected failure", XFAIL) + run:new_line("comment.lua", { on_line = 5, text = "multiline", indent = " " }) run:new_line("func.lua", { on_line = 1, text = "x = x + 1", indent = 2 }) run:new_line("func.lua", { on_line = 2, text = "y = y + 1", indent = 4 }) run:new_line("func.lua", { on_line = 4, text = "y = y + 1", indent = 2 }) |
