diff options
author | w0rp <devw0rp@gmail.com> | 2019-02-15 10:42:34 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2019-02-15 10:44:45 +0000 |
commit | 1a69c9c88ccb97655ee75c9fe02dcc81bc228626 (patch) | |
tree | d542e134cd03789ef2c0e7cde3e3142d52f9bb48 /test/lsp/test_lsp_client_messages.vader | |
parent | 0d10653a7c780ac98fd2b980679676f5e8f231e7 (diff) | |
download | ale-1a69c9c88ccb97655ee75c9fe02dcc81bc228626.zip |
#2295 Send an empty object for the initialized notification, per the spec
Diffstat (limited to 'test/lsp/test_lsp_client_messages.vader')
-rw-r--r-- | test/lsp/test_lsp_client_messages.vader | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lsp/test_lsp_client_messages.vader b/test/lsp/test_lsp_client_messages.vader index bdede460..e0e2ef20 100644 --- a/test/lsp/test_lsp_client_messages.vader +++ b/test/lsp/test_lsp_client_messages.vader @@ -23,7 +23,7 @@ Execute(ale#lsp#message#Initialize() should return correct messages): \ ale#lsp#message#Initialize('/foo/bar', {'foo': 'bar'}) Execute(ale#lsp#message#Initialized() should return correct messages): - AssertEqual [1, 'initialized'], ale#lsp#message#Initialized() + AssertEqual [1, 'initialized', {}], ale#lsp#message#Initialized() Execute(ale#lsp#message#Shutdown() should return correct messages): AssertEqual [0, 'shutdown'], ale#lsp#message#Shutdown() |