diff options
Diffstat (limited to 'test/functional/fixtures/fake-lsp-server.lua')
-rw-r--r-- | test/functional/fixtures/fake-lsp-server.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/fixtures/fake-lsp-server.lua b/test/functional/fixtures/fake-lsp-server.lua index c102a98002..9abf478070 100644 --- a/test/functional/fixtures/fake-lsp-server.lua +++ b/test/functional/fixtures/fake-lsp-server.lua @@ -253,7 +253,7 @@ function tests.check_forward_request_cancelled() end; body = function() expect_request("error_code_test", function() - return {code = -32800}, nil + return {code = -32800}, nil, {method = "error_code_test", client_id=1} end) notify('finish') end; @@ -267,7 +267,7 @@ function tests.check_forward_content_modified() end; body = function() expect_request("error_code_test", function() - return {code = -32801}, nil + return {code = -32801}, nil, {method = "error_code_test", client_id=1} end) expect_notification('finish') notify('finish') |