summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2023-08-27 19:59:28 +0200
committerChristian Brabandt <cb@256bit.org>2023-08-27 20:00:37 +0200
commitf2534434c99a2b0cea08b238df24979b3fdc9212 (patch)
treef4478d160a3216049ec9e026da1aa524d68868f5
parent9b73902dbe6f7940326bcd8dbc89d010d85d69c5 (diff)
patch 9.0.1808: termdebug: Typo in termdebug testv9.0.1808
Problem: termdebug: Typo in termdebug test Solution: fix the typos Signed-off-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--src/testdir/test_termdebug.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testdir/test_termdebug.vim b/src/testdir/test_termdebug.vim
index 16d0004cfe..49c84cf8b8 100644
--- a/src/testdir/test_termdebug.vim
+++ b/src/testdir/test_termdebug.vim
@@ -9,12 +9,12 @@ CheckExecutable gcc
let g:GDB = exepath('gdb')
if g:GDB->empty()
- throw 'Skpped: gdb is not found in $PATH'
+ throw 'Skipped: gdb is not found in $PATH'
endif
let g:GCC = exepath('gcc')
if g:GCC->empty()
- throw 'Skpped: gcc is not found in $PATH'
+ throw 'Skipped: gcc is not found in $PATH'
endif
packadd termdebug