summaryrefslogtreecommitdiff
path: root/src/testdir/test_method.vim
diff options
context:
space:
mode:
Diffstat (limited to 'src/testdir/test_method.vim')
-rw-r--r--src/testdir/test_method.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_method.vim b/src/testdir/test_method.vim
index 22a930c5f..d31cce187 100644
--- a/src/testdir/test_method.vim
+++ b/src/testdir/test_method.vim
@@ -52,7 +52,7 @@ func Test_dict_method()
call assert_fails("let x = d->insert(0)", 'E899:')
call assert_true(d->has_key('two'))
call assert_equal([['one', 1], ['two', 2], ['three', 3]], d->items())
- call assert_fails("let x = d->join()", 'E714:')
+ call assert_fails("let x = d->join()", 'E1211:')
call assert_equal(['one', 'two', 'three'], d->keys())
call assert_equal(3, d->len())
call assert_equal(#{one: 2, two: 3, three: 4}, d->map('v:val + 1'))