From 1fe73128cd3d3fb49f042c6613dc86c409927423 Mon Sep 17 00:00:00 2001 From: aycabta Date: Sat, 7 Aug 2021 22:58:26 +0900 Subject: [PATCH] Use TERM=xterm for tests on Solaris --- test/reline/helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'