summaryrefslogtreecommitdiffstats
path: root/src/testdir/test49.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-09-29 16:55:49 +0200
committerBram Moolenaar <Bram@vim.org>2010-09-29 16:55:49 +0200
commit3967692f9e46fa6156fff7f8f29aab0e469eed2e (patch)
tree600a6c8fd9aa255e08738720a21b6508d8270af9 /src/testdir/test49.vim
parent417f5e7f1173d63e9dcb77c4b80cb6bb317336c8 (diff)
updated for version 7.3.015v7.3.015
Problem: Test is using error message that no longer exists. Solution: Change E106 to E121. (Dominique Pelle)
Diffstat (limited to 'src/testdir/test49.vim')
-rw-r--r--src/testdir/test49.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testdir/test49.vim b/src/testdir/test49.vim
index 3b0982a685..5e24e30242 100644
--- a/src/testdir/test49.vim
+++ b/src/testdir/test49.vim
@@ -1,6 +1,6 @@
" Vim script language tests
" Author: Servatius Brandt <Servatius.Brandt@fujitsu-siemens.com>
-" Last Change: 2006 Apr 28
+" Last Change: 2010 Sep 29
"-------------------------------------------------------------------------------
" Test environment {{{1
@@ -8711,7 +8711,7 @@ try
endif
else
if cmd == "let"
- let match = MATCH(0, thrmsg, 'E106', "Unknown variable")
+ let match = MATCH(0, thrmsg, 'E121', "Undefined variable")
elseif cmd == "unlet"
let match = MATCH(0, thrmsg, 'E108', "No such variable")
endif