diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-07-03 21:40:16 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-07-03 21:40:16 +0200 |
commit | 435f9f06cac02c1d2e5c52435d36e80f4ad2a8bd (patch) | |
tree | 134b8a742fcab1b3941fe9270322dd424c96abd2 /src/testdir/test_timers.vim | |
parent | 9ee3d161f715de9e68ba60c17e3893107bb7c42a (diff) | |
download | vim-git-435f9f06cac02c1d2e5c52435d36e80f4ad2a8bd.tar.gz |
patch 8.1.1619: tests are not run with GUI on Travisv8.1.1619
Problem: Tests are not run with GUI on Travis.
Solution: Add a testgui job. (Ozaki Kiichi, closes #4609)
Diffstat (limited to 'src/testdir/test_timers.vim')
-rw-r--r-- | src/testdir/test_timers.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_timers.vim b/src/testdir/test_timers.vim index de13bcbe8..ee86e2a97 100644 --- a/src/testdir/test_timers.vim +++ b/src/testdir/test_timers.vim @@ -334,7 +334,7 @@ func Test_nocatch_garbage_collect() endfunc func Test_error_in_timer_callback() - if !has('terminal') || (has('win32') && has('gui_running')) + if !has('terminal') || has('gui_running') throw 'Skipped: cannot run Vim in a terminal window' endif |