From 0c01afc3c9d3ec95badb6c463288376908bf18d7 Mon Sep 17 00:00:00 2001 From: Hiroshi Mimaki Date: Mon, 7 May 2018 12:23:32 +0900 Subject: Fix CI build errors and warnings. --- mrbgems/mruby-bin-mruby/bintest/mruby.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mrbgems/mruby-bin-mruby/bintest/mruby.rb') diff --git a/mrbgems/mruby-bin-mruby/bintest/mruby.rb b/mrbgems/mruby-bin-mruby/bintest/mruby.rb index 3f6f3755d..ca11ce2e7 100644 --- a/mrbgems/mruby-bin-mruby/bintest/mruby.rb +++ b/mrbgems/mruby-bin-mruby/bintest/mruby.rb @@ -60,8 +60,8 @@ RUBY end assert('mruby -d option') do - o = `#{cmd('mruby')} -e #{shellquote('p $DEBUG')}>&1` - assert_equal o, "false\n" - o = `#{cmd('mruby')} -d -e #{shellquote('p $DEBUG')}>&1` - assert_equal o, "true\n" + o = `#{cmd('mruby')} -e #{shellquote('p $DEBUG')}` + assert_equal "false\n", o + o = `#{cmd('mruby')} -d -e #{shellquote('p $DEBUG')}` + assert_equal "true\n", o end -- cgit v1.2.3