tests: update tests to use [gs]et_lines instead of [gs]et_line_slice

This commit is contained in:
Björn Linse
2016-03-12 18:49:18 +01:00
parent f3645e422f
commit 8eb8ebf905
5 changed files with 9 additions and 9 deletions

View File

@@ -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, ...)