diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2016-03-12 18:49:18 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2016-04-01 11:29:51 +0200 |
commit | 8eb8ebf905e47c2e2354306e5abfc07e90e40e2b (patch) | |
tree | 93f7552ac33af24a1f8d5d180be38fd28f16cf7e /test/functional/terminal/edit_spec.lua | |
parent | f3645e422fd094a98628cb99011c04aa7c3ca3a3 (diff) | |
download | rneovim-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/terminal/edit_spec.lua')
-rw-r--r-- | test/functional/terminal/edit_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/terminal/edit_spec.lua b/test/functional/terminal/edit_spec.lua index 6da1521121..dcc4a54610 100644 --- a/test/functional/terminal/edit_spec.lua +++ b/test/functional/terminal/edit_spec.lua @@ -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) |