aboutsummaryrefslogtreecommitdiff
path: root/test/functional/lua/vim_spec.lua
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2023-08-07 14:42:25 +0200
committerGitHub <noreply@github.com>2023-08-07 14:42:25 +0200
commit3a21c3afe61e5bb76f4b81c1a961b2558e2c8f0a (patch)
tree02d894cf470742f02a1d69e05078562abd7f4762 /test/functional/lua/vim_spec.lua
parentef44e597294e4d0d9128ef69b6aa7481a54e17cb (diff)
parent51c754b62e795c49cfcf9df3ab492bdd53c61482 (diff)
downloadrneovim-3a21c3afe61e5bb76f4b81c1a961b2558e2c8f0a.tar.gz
rneovim-3a21c3afe61e5bb76f4b81c1a961b2558e2c8f0a.tar.bz2
rneovim-3a21c3afe61e5bb76f4b81c1a961b2558e2c8f0a.zip
Merge pull request #24524 from bfredl/typed_keys
refactor(api): use typed keysets
Diffstat (limited to 'test/functional/lua/vim_spec.lua')
-rw-r--r--test/functional/lua/vim_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/lua/vim_spec.lua b/test/functional/lua/vim_spec.lua
index f1a617fb70..35e87b71da 100644
--- a/test/functional/lua/vim_spec.lua
+++ b/test/functional/lua/vim_spec.lua
@@ -1511,7 +1511,7 @@ describe('lua stdlib', function()
eq(true, funcs.luaeval "vim.bo[BUF].modifiable")
matches("Unknown option 'nosuchopt'$",
pcall_err(exec_lua, 'return vim.bo.nosuchopt'))
- matches("Expected lua string$",
+ matches("Expected Lua string$",
pcall_err(exec_lua, 'return vim.bo[0][0].autoread'))
matches("Invalid buffer id: %-1$",
pcall_err(exec_lua, 'return vim.bo[-1].filetype'))