aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/old/testdir/test_method.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_method.vim b/test/old/testdir/test_method.vim
index fd6e1b1523..1b57bba282 100644
--- a/test/old/testdir/test_method.vim
+++ b/test/old/testdir/test_method.vim
@@ -78,7 +78,7 @@ func Test_string_method()
eval "a\rb\ec"->strtrans()->assert_equal('a^Mb^[c')
eval "aあb"->strwidth()->assert_equal(4)
eval 'abc'->substitute('b', 'x', '')->assert_equal('axc')
- call assert_fails('eval "x"->items()', 'E1227:')
+ call assert_fails('eval 123->items()', 'E1225:')
eval 'abc'->printf('the %s arg')->assert_equal('the abc arg')
endfunc