aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ex_getln/history_spec.lua
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2016-11-16 21:17:21 -0500
committerGitHub <noreply@github.com>2016-11-16 21:17:21 -0500
commit927e3e32d78460eb8031bda3304c9ea1f9ef855e (patch)
tree158e48cdaa336c5837d4af455357d19fdb76f9de /test/functional/ex_getln/history_spec.lua
parent5e241b5f50833afd920d37fa8b2bb24a30827406 (diff)
parent44e6ee930fff5bf42178e5555b4a7c3467cb66c8 (diff)
downloadrneovim-927e3e32d78460eb8031bda3304c9ea1f9ef855e.tar.gz
rneovim-927e3e32d78460eb8031bda3304c9ea1f9ef855e.tar.bz2
rneovim-927e3e32d78460eb8031bda3304c9ea1f9ef855e.zip
Merge pull request #5623 from justinmk/luacheck
build: Target luacheck HEAD.
Diffstat (limited to 'test/functional/ex_getln/history_spec.lua')
-rw-r--r--test/functional/ex_getln/history_spec.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/ex_getln/history_spec.lua b/test/functional/ex_getln/history_spec.lua
index c1d2ffda53..20f9cf06a2 100644
--- a/test/functional/ex_getln/history_spec.lua
+++ b/test/functional/ex_getln/history_spec.lua
@@ -6,7 +6,7 @@ describe('history support code', function()
before_each(clear)
it('correctly clears start of the history', function()
- -- Regression test: check absense of the memory leak when clearing start of
+ -- Regression test: check absense of the memory leak when clearing start of
-- the history using ex_getln.c/clr_history().
eq(1, funcs.histadd(':', 'foo'))
eq(1, funcs.histdel(':'))
@@ -14,7 +14,7 @@ describe('history support code', function()
end)
it('correctly clears end of the history', function()
- -- Regression test: check absense of the memory leak when clearing end of
+ -- Regression test: check absense of the memory leak when clearing end of
-- the history using ex_getln.c/clr_history().
meths.set_option('history', 1)
eq(1, funcs.histadd(':', 'foo'))
@@ -23,8 +23,8 @@ describe('history support code', function()
end)
it('correctly removes item from history', function()
- -- Regression test: check that ex_getln.c/del_history_idx() correctly clears
- -- history index after removing history entry. If it does not then deleting
+ -- Regression test: check that ex_getln.c/del_history_idx() correctly clears
+ -- history index after removing history entry. If it does not then deleting
-- history will result in a double free.
eq(1, funcs.histadd(':', 'foo'))
eq(1, funcs.histadd(':', 'bar'))