aboutsummaryrefslogtreecommitdiff
path: root/test/old/testdir/test_eval_stuff.vim
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-06-12 14:41:19 +0800
committerGitHub <noreply@github.com>2023-06-12 14:41:19 +0800
commit551cc3a2a3e2ee180234910cbe2ef81bd37508de (patch)
treeaf539897ec260bd4ac8a8db8f3544501f455a363 /test/old/testdir/test_eval_stuff.vim
parent3c4890d1efe7c23c0bff7bc4532f19cf03c94e04 (diff)
parent41ee7bc7dbcca4ce3d35c13450220d3bffcad15e (diff)
downloadrneovim-551cc3a2a3e2ee180234910cbe2ef81bd37508de.tar.gz
rneovim-551cc3a2a3e2ee180234910cbe2ef81bd37508de.tar.bz2
rneovim-551cc3a2a3e2ee180234910cbe2ef81bd37508de.zip
Merge pull request #23995 from zeertzjq/vim-8.2.1524
vim-patch:8.2.{1524,2948,2949}: Float to String conversion
Diffstat (limited to 'test/old/testdir/test_eval_stuff.vim')
-rw-r--r--test/old/testdir/test_eval_stuff.vim6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/old/testdir/test_eval_stuff.vim b/test/old/testdir/test_eval_stuff.vim
index 20eb873326..45dfd57842 100644
--- a/test/old/testdir/test_eval_stuff.vim
+++ b/test/old/testdir/test_eval_stuff.vim
@@ -230,6 +230,12 @@ func Test_string_concatenation()
let a = 'a'
let a..=b
call assert_equal('ab', a)
+
+ if has('float')
+ let a = 'A'
+ let b = 1.234
+ call assert_equal('A1.234', a .. b)
+ endif
endfunc
" Test fix for issue #4507