diff options
author | aycabta <aycabta@gmail.com> | 2021-08-07 22:58:26 +0900 |
---|---|---|
committer | aycabta <aycabta@gmail.com> | 2021-08-07 22:58:59 +0900 |
commit | 1fe73128cd3d3fb49f042c6613dc86c409927423 (patch) | |
tree | e3a42e441410183654fd2c33d46c7556e6fe367b | |
parent | f092a9606e0838ec3ffbf946ce4612524c51e870 (diff) | |
download | ruby-1fe73128cd3d3fb49f042c6613dc86c409927423.tar.gz |
Use TERM=xterm for tests on Solaris
-rw-r--r-- | test/reline/helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/reline/helper.rb b/test/reline/helper.rb index 3f6efdb185..cd3783ddb8 100644 --- a/test/reline/helper.rb +++ b/test/reline/helper.rb @@ -1,6 +1,6 @@ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) -ENV['TERM'] = 'xterm-256color' # for some CI environments +ENV['TERM'] = 'xterm' # for some CI environments require 'reline' require 'test/unit' |