Skip to content

Commit 650977b

Browse files
committedApr 29, 2015
Fix tolerance for Node.js v0.12 math float ops
1 parent 2522559 commit 650977b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

Diff for: ‎tasks/testing.rake

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ task :mspec_node do
4949
filename = 'tmp/mspec_node.rb'
5050
mkdir_p File.dirname(filename)
5151
File.write filename, <<-RUBY
52+
# Node v0.12 showed to need more tolerance, rubyspec default is 0.00003
53+
TOLERANCE = 0.00004
5254
require 'spec_helper'
5355
#{requires.join("\n ")}
5456
OSpecRunner.main.did_finish

0 commit comments

Comments
 (0)
Please sign in to comment.