diff options
Diffstat (limited to 'test/old/testdir/test_let.vim')
-rw-r--r-- | test/old/testdir/test_let.vim | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/old/testdir/test_let.vim b/test/old/testdir/test_let.vim index 8f7121935e..0d84164274 100644 --- a/test/old/testdir/test_let.vim +++ b/test/old/testdir/test_let.vim @@ -393,9 +393,8 @@ func Test_let_interpolated() let text = 'text' call assert_equal('text{{', $'{text .. "{{"}') call assert_equal('text{{', $"{text .. '{{'}") - " FIXME: should not need to escape quotes in the expression - call assert_equal('text{{', $'{text .. ''{{''}') - call assert_equal('text{{', $"{text .. \"{{\"}") + call assert_equal('text{{', $'{text .. '{{'}') + call assert_equal('text{{', $"{text .. "{{"}") endfunc " Test for the setting a variable using the heredoc syntax. |