diff options
Diffstat (limited to 'test/functional/autocmd/signal_spec.lua')
-rw-r--r-- | test/functional/autocmd/signal_spec.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/functional/autocmd/signal_spec.lua b/test/functional/autocmd/signal_spec.lua index 96924fb2fc..c7087254e7 100644 --- a/test/functional/autocmd/signal_spec.lua +++ b/test/functional/autocmd/signal_spec.lua @@ -3,7 +3,7 @@ local helpers = require('test.functional.helpers')(after_each) local clear = helpers.clear local command = helpers.command local eq = helpers.eq -local funcs = helpers.funcs +local fn = helpers.fn local next_msg = helpers.next_msg local is_os = helpers.is_os local skip = helpers.skip @@ -21,25 +21,25 @@ describe('autocmd Signal', function() it('matches *', function() command('autocmd Signal * call rpcnotify(1, "foo")') - posix_kill('USR1', funcs.getpid()) + posix_kill('USR1', fn.getpid()) eq({ 'notification', 'foo', {} }, next_msg()) end) it('matches SIGUSR1', function() command('autocmd Signal SIGUSR1 call rpcnotify(1, "foo")') - posix_kill('USR1', funcs.getpid()) + posix_kill('USR1', fn.getpid()) eq({ 'notification', 'foo', {} }, next_msg()) end) it('matches SIGWINCH', function() command('autocmd Signal SIGWINCH call rpcnotify(1, "foo")') - posix_kill('WINCH', funcs.getpid()) + posix_kill('WINCH', fn.getpid()) eq({ 'notification', 'foo', {} }, next_msg()) end) it('does not match unknown patterns', function() command('autocmd Signal SIGUSR2 call rpcnotify(1, "foo")') - posix_kill('USR1', funcs.getpid()) + posix_kill('USR1', fn.getpid()) eq(nil, next_msg(500)) end) end) |