summaryrefslogtreecommitdiffstats
path: root/src/testdir/check.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-09 14:13:57 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-09 14:13:57 +0200
commit2514315fc2530170ad7681e45e2b6d1f0680c9eb (patch)
tree23f9ed7abee3dace0c404dfdce97390380fb8c63 /src/testdir/check.vim
parent088e8e3443520dec91a384081e66445a104810bb (diff)
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.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/check.vim b/src/testdir/check.vim
index 4381c4ed8f..f176f83329 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