diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-01-01 23:58:42 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-01-01 23:58:42 -0500 |
commit | 22a928aeaccedc9cbb8e1d1f13391687666d8302 (patch) | |
tree | 6f669e4847d1ec1781a49dbf75ced84b0ada6206 /test/functional/ui/screen.lua | |
parent | 6f25ba0550d722112502e7882153cf4044aec6e2 (diff) | |
download | rneovim-22a928aeaccedc9cbb8e1d1f13391687666d8302.tar.gz rneovim-22a928aeaccedc9cbb8e1d1f13391687666d8302.tar.bz2 rneovim-22a928aeaccedc9cbb8e1d1f13391687666d8302.zip |
test: change CI_TARGET reference to CI
Travis defines[1] $CI for its builds, whereas $CI_TARGET is
a Neovim-specific env var from 6483a198e4bee1e80683ba12e061616c3e6c4090
that lost prominence in d2eb4a934683b5da63000d8b79a0d4c9a314d1c0.
[1] https://docs.travis-ci.com/user/environment-variables/
Diffstat (limited to 'test/functional/ui/screen.lua')
-rw-r--r-- | test/functional/ui/screen.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua index e1c2d14759..80f46326ee 100644 --- a/test/functional/ui/screen.lua +++ b/test/functional/ui/screen.lua @@ -119,7 +119,7 @@ if os.getenv('VALGRIND') then default_screen_timeout = default_screen_timeout * 3 end -if os.getenv('CI_TARGET') then +if os.getenv('CI') then default_screen_timeout = default_screen_timeout * 3 end |