From 450a68b7cc9f1bb65bbb9a38d49b49cfd7c0e5b0 Mon Sep 17 00:00:00 2001 From: Abdelhakeem Osama Date: Wed, 21 Aug 2019 21:17:09 +0300 Subject: vim-patch:8.1.0888: the a: dict is not immutable as documented (#10819) Problem: The a: dict is not immutable as documented. Solution: Make the a:dict immutable, add a test. (Ozaki Kiichi, Yasuhiro Matsumoto, closes vim/vim#3929) https://github.com/vim/vim/commit/31b816042fca879b11965ddd75287732563ba698 --- test/functional/legacy/055_list_and_dict_types_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/functional/legacy/055_list_and_dict_types_spec.lua b/test/functional/legacy/055_list_and_dict_types_spec.lua index dcbd8b7dff..91ba8bb106 100644 --- a/test/functional/legacy/055_list_and_dict_types_spec.lua +++ b/test/functional/legacy/055_list_and_dict_types_spec.lua @@ -666,7 +666,7 @@ describe('list and dictionary types', function() Vim(put):E741: {'a': 99, 'b': 100} No remove() of write-protected scope-level variable: - Vim(put):E795: + Vim(put):E742: No extend() of write-protected scope-level variable: Vim(put):E742: No :unlet of variable in locked scope: -- cgit