summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2015-11-08 21:37:19 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2015-11-08 21:37:19 +0900
commitb65bd3778de54100989d174afdc7495667098838 (patch)
treee64ccfa72372184357bc9980bc79ea2c721026b4
parentd6e1762346ec01280f72975074d2adce2667ab0b (diff)
parentbb141e553271dda750c54305d0b56ef69d3b2abd (diff)
downloadmruby-b65bd3778de54100989d174afdc7495667098838.tar.gz
mruby-b65bd3778de54100989d174afdc7495667098838.zip
Merge pull request #3005 from cremno/fix-ambiguous-first-argument-warning
fix ambiguous first argument warning
-rw-r--r--test/t/float.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/t/float.rb b/test/t/float.rb
index 0aab0b1f2..1805c6e7d 100644
--- a/test/t/float.rb
+++ b/test/t/float.rb
@@ -198,5 +198,5 @@ assert('Float#>>') do
assert_equal 0, 23.0 >> 128
# Don't raise on large Right Shift
- assert_equal -1, -23.0 >> 128
+ assert_equal(-1, -23.0 >> 128)
end