aboutsummaryrefslogtreecommitdiff
path: root/test/functional/helpers.lua
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2016-03-12 18:49:18 +0100
committerBjörn Linse <bjorn.linse@gmail.com>2016-04-01 11:29:51 +0200
commit8eb8ebf905e47c2e2354306e5abfc07e90e40e2b (patch)
tree93f7552ac33af24a1f8d5d180be38fd28f16cf7e /test/functional/helpers.lua
parentf3645e422fd094a98628cb99011c04aa7c3ca3a3 (diff)
downloadrneovim-8eb8ebf905e47c2e2354306e5abfc07e90e40e2b.tar.gz
rneovim-8eb8ebf905e47c2e2354306e5abfc07e90e40e2b.tar.bz2
rneovim-8eb8ebf905e47c2e2354306e5abfc07e90e40e2b.zip
tests: update tests to use [gs]et_lines instead of [gs]et_line_slice
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r--test/functional/helpers.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua
index 55c97d451b..4e294029ab 100644
--- a/test/functional/helpers.lua
+++ b/test/functional/helpers.lua
@@ -320,7 +320,7 @@ local function curbuf_contents()
-- previously sent keys are processed(vim_eval is a deferred function, and
-- only processed after all input)
wait()
- return table.concat(curbuf('get_line_slice', 0, -1, true, true), '\n')
+ return table.concat(curbuf('get_lines', 0, -1, true), '\n')
end
local function curwin(method, ...)