diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-01-22 08:15:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-22 08:15:13 +0800 |
commit | a25aeee856e2fb02f93ffa5c2e5d43fd75ead2cf (patch) | |
tree | de7b7667b0c07b2520537dfca06f2eddea4f60c4 | |
parent | 18d62d129f8ee4be3baf4245279fc07ed9ee370d (diff) | |
download | rneovim-a25aeee856e2fb02f93ffa5c2e5d43fd75ead2cf.tar.gz rneovim-a25aeee856e2fb02f93ffa5c2e5d43fd75ead2cf.tar.bz2 rneovim-a25aeee856e2fb02f93ffa5c2e5d43fd75ead2cf.zip |
test(core/channel_spec): fix lint failure
-rw-r--r-- | test/functional/core/channels_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/core/channels_spec.lua b/test/functional/core/channels_spec.lua index 1fbb92d558..56a2f5a571 100644 --- 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() |