From 8eb8ebf905e47c2e2354306e5abfc07e90e40e2b Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Sat, 12 Mar 2016 18:49:18 +0100 Subject: tests: update tests to use [gs]et_lines instead of [gs]et_line_slice --- test/functional/helpers.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/functional/helpers.lua') 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, ...) -- cgit