summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_channel.vim
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2022-11-02 13:30:51 +0000
committerBram Moolenaar <Bram@vim.org>2022-11-02 13:30:51 +0000
commitc57b5bcd22826e0852c2bc9c7d4382e1cac7cb74 (patch)
treed5163254047cdaa5cedd5caa4745727f6124eaf3 /src/testdir/test_channel.vim
parent1410d1841bfc4370dec1babe24c6664e06d7c9d9 (diff)
patch 9.0.0828: various typosv9.0.0828
Problem: Various typos. Solution: Correct typos. (closes #11432)
Diffstat (limited to 'src/testdir/test_channel.vim')
-rw-r--r--src/testdir/test_channel.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim
index a13b49f463..a99497d08e 100644
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -2563,11 +2563,11 @@ func LspTests(port)
" Test for using a one time callback function to process a response
let g:lspOtMsgs = []
- let r = ch_sendexpr(ch, #{method: 'msg-specifc-cb', params: {}},
+ let r = ch_sendexpr(ch, #{method: 'msg-specific-cb', params: {}},
\ #{callback: 'LspOtCb'})
call assert_equal(9, r.id)
call assert_equal('alive', ch_evalexpr(ch, #{method: 'ping'}).result)
- call assert_equal([#{id: 9, jsonrpc: '2.0', result: 'msg-specifc-cb'}],
+ call assert_equal([#{id: 9, jsonrpc: '2.0', result: 'msg-specific-cb'}],
\ g:lspOtMsgs)
" Test for generating a request message from the other end (server)