diff options
Diffstat (limited to 'src/nvim/testdir/test_syntax.vim')
-rw-r--r-- | src/nvim/testdir/test_syntax.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_syntax.vim b/src/nvim/testdir/test_syntax.vim index f75c295a1e..fc0dc6693c 100644 --- a/src/nvim/testdir/test_syntax.vim +++ b/src/nvim/testdir/test_syntax.vim @@ -496,8 +496,8 @@ endfunc " Check highlighting for a small piece of C code with a screen dump. func Test_syntax_c() - if !has('terminal') - return + if !CanRunVimInTerminal() + throw 'Skipped: cannot make screendumps' endif call writefile([ \ '/* comment line at the top */', |