diff options
Diffstat (limited to 'src/testdir/test_textprop.vim')
-rw-r--r-- | src/testdir/test_textprop.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testdir/test_textprop.vim b/src/testdir/test_textprop.vim index bacb288c5..012b3ebf8 100644 --- a/src/testdir/test_textprop.vim +++ b/src/testdir/test_textprop.vim @@ -314,8 +314,8 @@ func Test_prop_remove() unlet props[3] call assert_equal(props, prop_list(1)) - call assert_fails("call prop_remove({'id': 11, 'both': 1})", 'E860') - call assert_fails("call prop_remove({'type': 'three', 'both': 1})", 'E860') + call assert_fails("call prop_remove({'id': 11, 'both': 1})", 'E860:') + call assert_fails("call prop_remove({'type': 'three', 'both': 1})", 'E860:') call DeletePropTypes() bwipe! |