diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-05 10:17:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-05 10:17:37 +0200 |
commit | 51440204e7973672f906db8e53035cfd228ce444 (patch) | |
tree | 6c69695a8822cb42c4d5f1ff1cf23b440d9455ff /test/functional/ex_cmds | |
parent | 6871445dfe80939df81517870f0b29a2b40dd9d9 (diff) | |
parent | d4a0b6c4e1d78f19bf5879b113c5252d5a4f2e5c (diff) | |
download | rneovim-51440204e7973672f906db8e53035cfd228ce444.tar.gz rneovim-51440204e7973672f906db8e53035cfd228ce444.tar.bz2 rneovim-51440204e7973672f906db8e53035cfd228ce444.zip |
Merge #10695 from justinmk/test-fixes
test: various fixes
Diffstat (limited to 'test/functional/ex_cmds')
-rw-r--r-- | test/functional/ex_cmds/ctrl_c_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ex_cmds/ctrl_c_spec.lua b/test/functional/ex_cmds/ctrl_c_spec.lua index 4c5383b712..f65d9f0d01 100644 --- a/test/functional/ex_cmds/ctrl_c_spec.lua +++ b/test/functional/ex_cmds/ctrl_c_spec.lua @@ -11,7 +11,7 @@ describe("CTRL-C (mapped)", function() it("interrupts :global", function() -- Crashes luajit. if helpers.skip_fragile(pending, - os.getenv("TRAVIS") or os.getenv("APPVEYOR")) then + helpers.isCI('travis') or helpers.isCI('appveyor')) then return end |