test(core/channel_spec): fix lint failure

This commit is contained in:
zeertzjq 2024-01-22 08:15:13 +08:00 committed by GitHub
parent 18d62d129f
commit a25aeee856
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -72,7 +72,7 @@ describe('channels', function()
ok(id > 0) ok(id > 0)
command("call chansend(g:id, 'F')") command("call chansend(g:id, 'F')")
eq({'notification', 'data', {id, {''}}}, next_msg()) eq({ 'notification', 'data', { id, { '' } } }, next_msg())
set_session(server) set_session(server)
assert_alive() assert_alive()
@ -87,7 +87,7 @@ describe('channels', function()
assert_alive() assert_alive()
set_session(client) set_session(client)
command("call chansend(g:id, 'F')") command("call chansend(g:id, 'F')")
eq({'notification', 'data', {id, {''}}}, next_msg()) eq({ 'notification', 'data', { id, { '' } } }, next_msg())
set_session(server) set_session(server)
assert_alive() assert_alive()