From 0aa3e7b7ceb259680f9da31bd247b42cdc934449 Mon Sep 17 00:00:00 2001 From: ZyX Date: Sat, 6 Feb 2016 20:54:42 +0300 Subject: eval: Port parts of 7.4.1267 that are not already present --- test/functional/eval/special_vars_spec.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/functional/eval/special_vars_spec.lua b/test/functional/eval/special_vars_spec.lua index 7539261d49..b003dceb04 100644 --- a/test/functional/eval/special_vars_spec.lua +++ b/test/functional/eval/special_vars_spec.lua @@ -147,9 +147,9 @@ describe('Special values', function() end) it('fails in index', function() - eq('Vim(echo):E15: Cannot index a special value', exc_exec('echo v:true[0]')) - eq('Vim(echo):E15: Cannot index a special value', exc_exec('echo v:false[0]')) - eq('Vim(echo):E15: Cannot index a special value', exc_exec('echo v:null[0]')) + eq('Vim(echo):E909: Cannot index a special variable', exc_exec('echo v:true[0]')) + eq('Vim(echo):E909: Cannot index a special variable', exc_exec('echo v:false[0]')) + eq('Vim(echo):E909: Cannot index a special variable', exc_exec('echo v:null[0]')) end) it('is accepted by assert_true and assert_false', function() -- cgit