aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/float
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-29 00:22:52 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-29 00:22:52 +0000
commit2076c2c3c401d9ab9324468818bbc46d4e4b870a (patch)
tree1697bf7d3f434e49cafd8a8c1579f2d065a7de56 /spec/ruby/core/float
parent548defb608847973e78462a38c8418f90dce9911 (diff)
downloadruby-2076c2c3c401d9ab9324468818bbc46d4e4b870a.tar.gz
Update to ruby/spec@944ea57
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66622 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/ruby/core/float')
-rw-r--r--spec/ruby/core/float/round_spec.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/spec/ruby/core/float/round_spec.rb b/spec/ruby/core/float/round_spec.rb
index e04b376c36..df113f97b1 100644
--- a/spec/ruby/core/float/round_spec.rb
+++ b/spec/ruby/core/float/round_spec.rb
@@ -10,11 +10,9 @@ describe "Float#round" do
0.0.round.should == 0
end
- platform_is_not :mingw32 do
- it "returns the nearest Integer for Float near the limit" do
- 0.49999999999999994.round.should == 0
- -0.49999999999999994.round.should == 0
- end
+ it "returns the nearest Integer for Float near the limit" do
+ 0.49999999999999994.round.should == 0
+ -0.49999999999999994.round.should == 0
end
it "raises FloatDomainError for exceptional values" do