diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/indent/lua_spec.lua | 2 | ||||
| -rw-r--r-- | tests/indent/python_spec.lua | 4 | ||||
| -rw-r--r-- | tests/indent/rust/macro.rs | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/tests/indent/lua_spec.lua b/tests/indent/lua_spec.lua index 3b3beafea..cf615713c 100644 --- a/tests/indent/lua_spec.lua +++ b/tests/indent/lua_spec.lua @@ -28,7 +28,7 @@ describe("indent Lua:", function() run:new_line("table.lua", { on_line = 1, text = "b = 0,", indent = 2 }) run:new_line("table.lua", { on_line = 5, text = "4,", indent = 4 }) run:new_line("table.lua", { on_line = 7, text = "4,", indent = 4 }) - run:new_line("loop.lua", { on_line = 4, text = "x = x + 1", indent = 2 }, "expected failure", XFAIL) + run:new_line("loop.lua", { on_line = 4, text = "x = x + 1", indent = 2 }) run:new_line("cond.lua", { on_line = 5, text = "x = x + 1", indent = 2 }) run:new_line("cond.lua", { on_line = 7, text = "x = x + 1", indent = 2 }) run:new_line("cond.lua", { on_line = 8, text = "x = x + 1", indent = 4 }) diff --git a/tests/indent/python_spec.lua b/tests/indent/python_spec.lua index f1769c4d8..18a1413a2 100644 --- a/tests/indent/python_spec.lua +++ b/tests/indent/python_spec.lua @@ -26,8 +26,8 @@ describe("indent Python:", function() run:new_line("basic_blocks.py", { on_line = 1, text = "wait,", indent = 4 }) run:new_line("basic_blocks.py", { on_line = 6, text = "x += 1", indent = 4 }) run:new_line("basic_blocks.py", { on_line = 10, text = "x += 1", indent = 8 }) - run:new_line("basic_blocks.py", { on_line = 7, text = "x += 1", indent = 4 }, "7, after last line of a block") - run:new_line("basic_blocks.py", { on_line = 11, text = "x += 1", indent = 8 }, "11, after last line of a block") + run:new_line("basic_blocks.py", { on_line = 7, text = "x += 1", indent = 0 }) + run:new_line("basic_blocks.py", { on_line = 11, text = "x += 1", indent = 4 }) run:new_line("basic_collections.py", { on_line = 3, text = "4,", indent = 4 }) run:new_line("comprehensions.py", { on_line = 8, text = "if x != 2", indent = 4 }) run:new_line("control_flow.py", { on_line = 23, text = "x = 4", indent = 4 }, "expected failure", XFAIL) diff --git a/tests/indent/rust/macro.rs b/tests/indent/rust/macro.rs index 608e157fc..0900f4c12 100644 --- a/tests/indent/rust/macro.rs +++ b/tests/indent/rust/macro.rs @@ -2,10 +2,10 @@ macro_rules! foo { ($a:ident, $b:ident, $c:ident) => { struct $a; struct $b; - }, + }; ($a:ident) => { struct $a; - }, + }; } foo! { |
