diff options
Diffstat (limited to 'tests/indent/gdscript_spec.lua')
| -rw-r--r-- | tests/indent/gdscript_spec.lua | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/indent/gdscript_spec.lua b/tests/indent/gdscript_spec.lua index c1770f41a..ee6f58a4b 100644 --- a/tests/indent/gdscript_spec.lua +++ b/tests/indent/gdscript_spec.lua @@ -1,20 +1,20 @@ -local Runner = require("tests.indent.common").Runner +local Runner = require('tests.indent.common').Runner -local run = Runner:new(it, "tests/indent/gdscript", { +local run = Runner:new(it, 'tests/indent/gdscript', { tabstop = 4, shiftwidth = 4, softtabstop = 0, expandtab = false, }) -describe("indent GDScript:", function() - describe("whole file:", function() - run:whole_file(".", { +describe('indent GDScript:', function() + describe('whole file:', function() + run:whole_file('.', { expected_failures = {}, }) end) - describe("new line:", function() - run:new_line("basic_blocks.gd", { on_line = 1, text = "var member := 0", indent = 0 }) + describe('new line:', function() + run:new_line('basic_blocks.gd', { on_line = 1, text = 'var member := 0', indent = 0 }) end) end) |
