diff options
| author | Alvaro Muñoz <pwntester@github.com> | 2023-01-31 12:20:52 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2023-01-31 12:23:13 +0100 |
| commit | f6531e27fdce207ce6c47bf9ff82a485b3b63823 (patch) | |
| tree | 0c010844bc22bdbbc0a74f6362f561ab98b5ee0e /tests/indent/ql_spec.lua | |
| parent | update tests (diff) | |
| download | nvim-treesitter-f6531e27fdce207ce6c47bf9ff82a485b3b63823.tar nvim-treesitter-f6531e27fdce207ce6c47bf9ff82a485b3b63823.tar.gz nvim-treesitter-f6531e27fdce207ce6c47bf9ff82a485b3b63823.tar.bz2 nvim-treesitter-f6531e27fdce207ce6c47bf9ff82a485b3b63823.tar.lz nvim-treesitter-f6531e27fdce207ce6c47bf9ff82a485b3b63823.tar.xz nvim-treesitter-f6531e27fdce207ce6c47bf9ff82a485b3b63823.tar.zst nvim-treesitter-f6531e27fdce207ce6c47bf9ff82a485b3b63823.zip | |
simplify tests
Diffstat (limited to 'tests/indent/ql_spec.lua')
| -rw-r--r-- | tests/indent/ql_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/indent/ql_spec.lua b/tests/indent/ql_spec.lua index cc648091e..cfdce9077 100644 --- a/tests/indent/ql_spec.lua +++ b/tests/indent/ql_spec.lua @@ -16,9 +16,9 @@ describe("indent Lua:", function() end) describe("new line:", function() - run:new_line("module.ql", { on_line = 3, text = "predicate foo() {}", indent = 2 }) + run:new_line("module.ql", { on_line = 1, text = "predicate foo() {}", indent = 2 }) end) describe("new line:", function() - run:new_line("module.ql", { on_line = 4, text = "predicate foo() {}", indent = 2 }) + run:new_line("module.ql", { on_line = 2, text = "predicate foo() {}", indent = 2 }) end) |
