aboutsummaryrefslogtreecommitdiff
path: root/test/functional/normal
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-04-11 03:14:10 +0200
committerGitHub <noreply@github.com>2017-04-11 03:14:10 +0200
commit337299c8082347feecb5e733bed993c6a5933456 (patch)
treeb2f491c54f8ed3a4ed57e1b78bf907b918b8b34c /test/functional/normal
parent9aface8c4d1edd25d4fed3e099e3c2c02b0a282a (diff)
parentde378477cc3ebface5da5dbd24015959755f137e (diff)
downloadrneovim-337299c8082347feecb5e733bed993c6a5933456.tar.gz
rneovim-337299c8082347feecb5e733bed993c6a5933456.tar.bz2
rneovim-337299c8082347feecb5e733bed993c6a5933456.zip
Merge #6490 from justinmk/test
Closes #6487
Diffstat (limited to 'test/functional/normal')
-rw-r--r--test/functional/normal/lang_spec.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/normal/lang_spec.lua b/test/functional/normal/lang_spec.lua
index 464b85d684..1da1d4679d 100644
--- a/test/functional/normal/lang_spec.lua
+++ b/test/functional/normal/lang_spec.lua
@@ -1,6 +1,6 @@
local helpers = require('test.functional.helpers')(after_each)
local clear, insert, eq = helpers.clear, helpers.insert, helpers.eq
-local execute, expect = helpers.execute, helpers.expect
+local command, expect = helpers.command, helpers.expect
local feed, eval = helpers.feed, helpers.eval
local exc_exec = helpers.exc_exec
@@ -32,7 +32,7 @@ describe('gu and gU', function()
end
before_each(function()
- execute('lang ctype tr_TR.UTF-8')
+ command('lang ctype tr_TR.UTF-8')
end)
it('with default casemap', function()
@@ -46,7 +46,7 @@ describe('gu and gU', function()
end)
it('with casemap=""', function()
- execute('set casemap=')
+ command('set casemap=')
-- expect Turkish locale behavior
insert("iI")
feed("VgU")