neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit a25aeee856e2fb02f93ffa5c2e5d43fd75ead2cf
parent 18d62d129f8ee4be3baf4245279fc07ed9ee370d
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Mon, 22 Jan 2024 08:15:13 +0800

test(core/channel_spec): fix lint failure
Diffstat:
Mtest/functional/core/channels_spec.lua | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/functional/core/channels_spec.lua b/test/functional/core/channels_spec.lua @@ -72,7 +72,7 @@ describe('channels', function() ok(id > 0) command("call chansend(g:id, 'F')") - eq({'notification', 'data', {id, {''}}}, next_msg()) + eq({ 'notification', 'data', { id, { '' } } }, next_msg()) set_session(server) assert_alive() @@ -87,7 +87,7 @@ describe('channels', function() assert_alive() set_session(client) command("call chansend(g:id, 'F')") - eq({'notification', 'data', {id, {''}}}, next_msg()) + eq({ 'notification', 'data', { id, { '' } } }, next_msg()) set_session(server) assert_alive()