diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-10 21:54:19 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-11 02:37:39 +0200 |
commit | 119f0ca85463b7d9fb7dffe47d0fcee2c9604c53 (patch) | |
tree | 3a5920d0a87d7e78bb8777944244fff862dda881 /test/functional/normal/lang_spec.lua | |
parent | dab3f86d092706514bd207dd9900740bab785859 (diff) | |
download | rneovim-119f0ca85463b7d9fb7dffe47d0fcee2c9604c53.tar.gz rneovim-119f0ca85463b7d9fb7dffe47d0fcee2c9604c53.tar.bz2 rneovim-119f0ca85463b7d9fb7dffe47d0fcee2c9604c53.zip |
test: helpers.execute() => helpers.feed_command()
Diffstat (limited to 'test/functional/normal/lang_spec.lua')
-rw-r--r-- | test/functional/normal/lang_spec.lua | 6 |
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") |