fix ambiguous first argument warning

/home/travis/build/mruby/mruby/test/t/float.rb:201:17:
ambiguous first argument; put parentheses or even spaces
This commit is contained in:
cremno
2015-11-06 18:35:19 +01:00
parent 8bad1954a4
commit bb141e5532
+1 -1
View File
@@ -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