summaryrefslogtreecommitdiff
path: root/src/testdir/test_suspend.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-15 11:21:15 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-15 11:21:15 +0200
commit185d68a9d08f18440af93dd0f232e38f1819ddb2 (patch)
tree00eda99bd7df00c42a70fe4e399477532cf1769e /src/testdir/test_suspend.vim
parent93344c2d707d9953f351c944e6a237c9916f69a3 (diff)
downloadvim-git-185d68a9d08f18440af93dd0f232e38f1819ddb2.tar.gz
patch 8.1.1847: suspend test is failingv8.1.1847
Problem: Suspend test is failing. Solution: Do not use GetVimCommandClean().
Diffstat (limited to 'src/testdir/test_suspend.vim')
-rw-r--r--src/testdir/test_suspend.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testdir/test_suspend.vim b/src/testdir/test_suspend.vim
index bf88bd445..4b3bd5ead 100644
--- a/src/testdir/test_suspend.vim
+++ b/src/testdir/test_suspend.vim
@@ -26,8 +26,8 @@ func Test_suspend()
" 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>")