aboutsummaryrefslogtreecommitdiff
path: root/test/functional/api/rpc_fixture.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-06-07 10:56:44 +0200
committerGitHub <noreply@github.com>2018-06-07 10:56:44 +0200
commit3abf17ae88e3048c20b1645b9d78b69566e89872 (patch)
treefebd1791bc04f577fd84563bb0eae7512a1b8957 /test/functional/api/rpc_fixture.lua
parent5a82afa17aa7dec33af2f9c67e7786e7b5e9e8bb (diff)
downloadrneovim-3abf17ae88e3048c20b1645b9d78b69566e89872.tar.gz
rneovim-3abf17ae88e3048c20b1645b9d78b69566e89872.tar.bz2
rneovim-3abf17ae88e3048c20b1645b9d78b69566e89872.zip
API: validation: mention invalid method name (#8489)
Diffstat (limited to 'test/functional/api/rpc_fixture.lua')
-rw-r--r--test/functional/api/rpc_fixture.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/api/rpc_fixture.lua b/test/functional/api/rpc_fixture.lua
index 423864740f..e885a525af 100644
--- a/test/functional/api/rpc_fixture.lua
+++ b/test/functional/api/rpc_fixture.lua
@@ -31,7 +31,7 @@ end
local function on_notification(event, args)
if event == 'ping' and #args == 0 then
- session:notify("vim_eval", "rpcnotify(g:channel, 'pong')")
+ session:notify("nvim_eval", "rpcnotify(g:channel, 'pong')")
end
end