diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-10-19 23:14:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 23:14:55 +0200 |
commit | 38efa1730f205bc2cd0da40b1fac8936eec1a835 (patch) | |
tree | 7bdf7a2d1cb9752ce9c36aecbcbfb6469fe930bb /test/functional/legacy/wordcount_spec.lua | |
parent | eaee3d9297d114c81b05dd4ed104373eeb87bc11 (diff) | |
parent | 07cc231142f5810c70818007dcd720271b1c0248 (diff) | |
download | rneovim-38efa1730f205bc2cd0da40b1fac8936eec1a835.tar.gz rneovim-38efa1730f205bc2cd0da40b1fac8936eec1a835.tar.bz2 rneovim-38efa1730f205bc2cd0da40b1fac8936eec1a835.zip |
Merge pull request #13118 from bfredl/mudholland
A Mudholland Dr. Recast
Diffstat (limited to 'test/functional/legacy/wordcount_spec.lua')
-rw-r--r-- | test/functional/legacy/wordcount_spec.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/functional/legacy/wordcount_spec.lua b/test/functional/legacy/wordcount_spec.lua index 0c8bd2cdcc..826743b0ca 100644 --- a/test/functional/legacy/wordcount_spec.lua +++ b/test/functional/legacy/wordcount_spec.lua @@ -4,7 +4,7 @@ local helpers = require('test.functional.helpers')(after_each) local feed, insert, source = helpers.feed, helpers.insert, helpers.source local clear, command = helpers.clear, helpers.command local eq, eval = helpers.eq, helpers.eval -local wait = helpers.wait +local poke_eventloop = helpers.poke_eventloop describe('wordcount', function() before_each(clear) @@ -14,7 +14,7 @@ describe('wordcount', function() insert([=[ RESULT test:]=]) - wait() + poke_eventloop() command('new') source([=[ @@ -127,7 +127,7 @@ describe('wordcount', function() -- -- Start visual mode quickly and select complete buffer. command('0') feed('V2jy<cr>') - wait() + poke_eventloop() command('set stl= ls=1') command('let log=DoRecordWin([3,99,0])') command('let log[1]=g:visual_stat') @@ -144,7 +144,7 @@ describe('wordcount', function() -- Start visual mode quickly and select complete buffer. command('0') feed('v$y<cr>') - wait() + poke_eventloop() command('set stl= ls=1') command('let log=DoRecordWin([3,99,0])') command('let log[1]=g:visual_stat') @@ -161,7 +161,7 @@ describe('wordcount', function() -- Start visual mode quickly and select complete buffer. command('2') feed('0v$y<cr>') - wait() + poke_eventloop() command('set stl= ls=1') command('let log=DoRecordWin([3,99,0])') command('let log[1]=g:visual_stat') |