summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-bin-mruby
diff options
context:
space:
mode:
authorHiroshi Mimaki <[email protected]>2018-05-07 12:23:32 +0900
committerHiroshi Mimaki <[email protected]>2018-05-07 12:23:32 +0900
commit0c01afc3c9d3ec95badb6c463288376908bf18d7 (patch)
tree2f344dd2bf964cad1234499e52a028c819c1c247 /mrbgems/mruby-bin-mruby
parent1d16646506ff7bc95d501deaee67740b08b218b5 (diff)
downloadmruby-0c01afc3c9d3ec95badb6c463288376908bf18d7.tar.gz
mruby-0c01afc3c9d3ec95badb6c463288376908bf18d7.zip
Fix CI build errors and warnings.
Diffstat (limited to 'mrbgems/mruby-bin-mruby')
-rw-r--r--mrbgems/mruby-bin-mruby/bintest/mruby.rb8
1 files changed, 4 insertions, 4 deletions
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