Skip to content

Commit

Permalink
Fix benchmark html report
Browse files Browse the repository at this point in the history
  • Loading branch information
jkowens committed Apr 1, 2016
1 parent 3a29eda commit 7787a40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/lib/output_to_html.rb
Expand Up @@ -51,7 +51,7 @@ def self.output_results( filename, results )
else
time = result.tms.real.round_to( 3 )
speedup = ( result_set.first.tms.real / result.tms.real ).round
times << result == result_set.first ? time.to_s : "#{time} (#{speedup}x speedup)"
times << (result == result_set.first ? time.to_s : "#{time} (#{speedup}x speedup)")
end
end

Expand Down

0 comments on commit 7787a40

Please sign in to comment.