aboutsummaryrefslogtreecommitdiff
path: root/test/old/testdir/test_eval_stuff.vim
diff options
context:
space:
mode:
Diffstat (limited to 'test/old/testdir/test_eval_stuff.vim')
-rw-r--r--test/old/testdir/test_eval_stuff.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_eval_stuff.vim b/test/old/testdir/test_eval_stuff.vim
index ed45eef36c..45dfd57842 100644
--- a/test/old/testdir/test_eval_stuff.vim
+++ b/test/old/testdir/test_eval_stuff.vim
@@ -234,7 +234,7 @@ func Test_string_concatenation()
if has('float')
let a = 'A'
let b = 1.234
- call assert_fails('echo a .. b', 'E806:')
+ call assert_equal('A1.234', a .. b)
endif
endfunc