aboutsummaryrefslogtreecommitdiff
path: root/test/functional/vimscript/ctx_functions_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2024-09-23 07:14:10 -0700
committerGitHub <noreply@github.com>2024-09-23 07:14:10 -0700
commit34a40d3a50f71a4b5e06c36ed9f9110983984dbf (patch)
tree69f647ce5f5dba8f16cb2a55a2511b89df4db87e /test/functional/vimscript/ctx_functions_spec.lua
parent47e6b2233feffc6e9d94f6086fb904eb5688fa25 (diff)
parent17027d64726864c7bbdba5bee004eb581ac4b54a (diff)
downloadrneovim-34a40d3a50f71a4b5e06c36ed9f9110983984dbf.tar.gz
rneovim-34a40d3a50f71a4b5e06c36ed9f9110983984dbf.tar.bz2
rneovim-34a40d3a50f71a4b5e06c36ed9f9110983984dbf.zip
Merge #30435 refactor: rename "Dictionary" => "Dict"
Diffstat (limited to 'test/functional/vimscript/ctx_functions_spec.lua')
-rw-r--r--test/functional/vimscript/ctx_functions_spec.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/vimscript/ctx_functions_spec.lua b/test/functional/vimscript/ctx_functions_spec.lua
index 5e9a803b5d..873e4f820d 100644
--- a/test/functional/vimscript/ctx_functions_spec.lua
+++ b/test/functional/vimscript/ctx_functions_spec.lua
@@ -295,7 +295,7 @@ describe('context functions', function()
eq(outofbounds, pcall_err(call, 'ctxget', 0))
end)
- it('returns context dictionary at index in context stack', function()
+ it('returns context dict at index in context stack', function()
feed('i1<cr>2<cr>3<c-[>ddddddqahjklq')
command('edit! ' .. fname1)
feed('G')
@@ -404,7 +404,7 @@ describe('context functions', function()
eq(outofbounds, pcall_err(call, 'ctxset', { dummy = 1 }, 0))
end)
- it('errors when context dictionary is invalid', function()
+ it('errors when context dict is invalid', function()
call('ctxpush')
eq(
'Vim:E474: Failed to convert list to msgpack string buffer',
@@ -412,7 +412,7 @@ describe('context functions', function()
)
end)
- it('sets context dictionary at index in context stack', function()
+ it('sets context dict at index in context stack', function()
api.nvim_set_var('one', 1)
api.nvim_set_var('Two', 2)
api.nvim_set_var('THREE', 3)