patch 8.1.1847: suspend test is failing
Problem: Suspend test is failing.
Solution: Do not use GetVimCommandClean().
diff --git a/src/testdir/test_suspend.vim b/src/testdir/test_suspend.vim
index bf88bd4..4b3bd5e 100644
--- a/src/testdir/test_suspend.vim
+++ b/src/testdir/test_suspend.vim
@@ -26,8 +26,8 @@
" Wait for shell prompt.
call WaitForAssert({-> assert_match('[$#] $', term_getline(buf, '.'))})
- call term_sendkeys(buf, GetVimCommandClean()
- \ . " -X"
+ call term_sendkeys(buf, v:progpath
+ \ . " --clean -X"
\ . " -c 'set nu'"
\ . " -c 'call setline(1, \"foo\")'"
\ . " Xfoo\<CR>")