summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_const.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-06-24 00:58:07 +0200
committerBram Moolenaar <Bram@vim.org>2019-06-24 00:58:07 +0200
commite7eb92708ec2092a2fc11e78703b5dcf83844412 (patch)
treed00da20838b81404557c7b0ef17d2890f18175ac /src/testdir/test_const.vim
parent0a1f56fcfe31be929e9cd8c3d81a984c960e4180 (diff)
patch 8.1.1585: :let-heredoc does not trim enoughv8.1.1585
Problem: :let-heredoc does not trim enough. Solution: Trim indent from the contents based on the indent of the first line. Use let-heredoc in more tests.
Diffstat (limited to 'src/testdir/test_const.vim')
-rw-r--r--src/testdir/test_const.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testdir/test_const.vim b/src/testdir/test_const.vim
index d4dccb1b83..d93de72bd4 100644
--- a/src/testdir/test_const.vim
+++ b/src/testdir/test_const.vim
@@ -18,7 +18,7 @@ func Test_define_var_with_lock()
const n = v:null
const bl = 0zC0FFEE
const here =<< trim EOS
- hello
+ hello
EOS
call assert_true(exists('i'))
@@ -84,7 +84,7 @@ func Test_define_l_var_with_lock()
const l:n = v:null
const l:bl = 0zC0FFEE
const l:here =<< trim EOS
- hello
+ hello
EOS
call assert_fails('let l:i = 1', 'E741:')