diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/test_scriptnames.vim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/old/testdir/test_scriptnames.vim b/test/old/testdir/test_scriptnames.vim index d804684722..06ae305ab7 100644 --- a/test/old/testdir/test_scriptnames.vim +++ b/test/old/testdir/test_scriptnames.vim @@ -35,9 +35,7 @@ func Test_getscriptinfo() source Xscript let l = getscriptinfo() call assert_match('Xscript$', l[-1].name) - " Nvim does not support interpolated strings yet. - " call assert_equal(g:loaded_script_id, $"<SNR>{l[-1].sid}_") - call assert_equal(g:loaded_script_id, '<SNR>' . l[-1].sid . '_') + call assert_equal(g:loaded_script_id, $"<SNR>{l[-1].sid}_") call delete('Xscript') endfunc |