From 4a29995fe74ed95c641ef40c68d8a4223e90cccf Mon Sep 17 00:00:00 2001 From: ZyX Date: Mon, 7 Mar 2016 06:41:00 +0300 Subject: eval/decode: Rename brackets in error messages U+007D is officially RIGHT CURLY BRACKET. U+005D is officially RIGHT SQUARE BRACKET. --- test/functional/eval/json_functions_spec.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/functional/eval/json_functions_spec.lua') diff --git a/test/functional/eval/json_functions_spec.lua b/test/functional/eval/json_functions_spec.lua index d6286611d2..131b177622 100644 --- a/test/functional/eval/json_functions_spec.lua +++ b/test/functional/eval/json_functions_spec.lua @@ -198,9 +198,9 @@ describe('json_decode() function', function() it('fails to parse containers which are closed by different brackets', function() - eq('Vim(call):E474: Closing dictionary with bracket: ]', + eq('Vim(call):E474: Closing dictionary with square bracket: ]', exc_exec('call json_decode("{]")')) - eq('Vim(call):E474: Closing list with figure brace: }', + eq('Vim(call):E474: Closing list with curly bracket: }', exc_exec('call json_decode("[}")')) end) -- cgit