diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-11-08 21:37:19 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-11-08 21:37:19 +0900 |
| commit | b65bd3778de54100989d174afdc7495667098838 (patch) | |
| tree | e64ccfa72372184357bc9980bc79ea2c721026b4 /test | |
| parent | d6e1762346ec01280f72975074d2adce2667ab0b (diff) | |
| parent | bb141e553271dda750c54305d0b56ef69d3b2abd (diff) | |
| download | mruby-b65bd3778de54100989d174afdc7495667098838.tar.gz mruby-b65bd3778de54100989d174afdc7495667098838.zip | |
Merge pull request #3005 from cremno/fix-ambiguous-first-argument-warning
fix ambiguous first argument warning
Diffstat (limited to 'test')
| -rw-r--r-- | test/t/float.rb | 2 |
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 |
