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

@@ -70,6 +70,6 @@ describe(':edit term://*', function()
end
exp_screen = exp_screen .. (' '):rep(columns) .. '|\n'
scr:expect(exp_screen)
eq(bufcontents, curbufmeths.get_line_slice(1, -1, true, true))
eq(bufcontents, curbufmeths.get_lines(1, -1, true))
end)
end)