diff options
author | Daniel Hahler <git@thequod.de> | 2019-08-21 02:32:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-21 02:32:20 +0200 |
commit | 47e27a4f5b2b2ae20e20a51a6cf0f76078c28698 (patch) | |
tree | 5c09c34ee2d7a2f588222a7edcc30aa96a2ea8fa /test/functional/api/server_requests_spec.lua | |
parent | 7adea68c1eab6ba71344aa24aaf5026b824d7ea1 (diff) | |
download | rneovim-47e27a4f5b2b2ae20e20a51a6cf0f76078c28698.tar.gz rneovim-47e27a4f5b2b2ae20e20a51a6cf0f76078c28698.tar.bz2 rneovim-47e27a4f5b2b2ae20e20a51a6cf0f76078c28698.zip |
tests: support msg with global_helpers.ok (#10820)
Ref: https://github.com/neovim/neovim/pull/10768#discussion_r315904175
Co-Authored-By: Justin M. Keyes <justinkz@gmail.com>
Diffstat (limited to 'test/functional/api/server_requests_spec.lua')
-rw-r--r-- | test/functional/api/server_requests_spec.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/api/server_requests_spec.lua b/test/functional/api/server_requests_spec.lua index dbe9f20412..ddd044a10f 100644 --- a/test/functional/api/server_requests_spec.lua +++ b/test/functional/api/server_requests_spec.lua @@ -169,8 +169,7 @@ describe('server -> client', function() if method == "notification" then eq('done!', eval('rpcrequest('..cid..', "nested")')) elseif method == "nested_done" then - -- this should never have been sent - ok(false) + ok(false, 'this should never have been sent') end end |