diff options
-rw-r--r-- | test/old/testdir/test_termdebug.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/old/testdir/test_termdebug.vim b/test/old/testdir/test_termdebug.vim index 4dca1a20fa..656207cbda 100644 --- a/test/old/testdir/test_termdebug.vim +++ b/test/old/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 |