diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-09 14:13:57 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-09 14:13:57 +0200 |
commit | 2514315fc2530170ad7681e45e2b6d1f0680c9eb (patch) | |
tree | 23f9ed7abee3dace0c404dfdce97390380fb8c63 /src/testdir/check.vim | |
parent | 088e8e3443520dec91a384081e66445a104810bb (diff) | |
download | vim-git-2514315fc2530170ad7681e45e2b6d1f0680c9eb.tar.gz |
patch 8.1.1831: confusing skipped messagev8.1.1831
Problem: Confusing skipped message.
Solution: Drop "run" from "run start the GUI".
Diffstat (limited to 'src/testdir/check.vim')
-rw-r--r-- | src/testdir/check.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/check.vim b/src/testdir/check.vim index 4381c4ed8..f176f8332 100644 --- a/src/testdir/check.vim +++ b/src/testdir/check.vim @@ -83,7 +83,7 @@ endfunc command CheckCanRunGui call CheckCanRunGui() func CheckCanRunGui() if !has('gui') || ($DISPLAY == "" && !has('gui_running')) - throw 'Skipped: cannot run start the GUI' + throw 'Skipped: cannot start the GUI' endif endfunc |