Skip to content
Snippets Groups Projects
Commit b61e6797 authored by Yorick Peterse's avatar Yorick Peterse
Browse files

Correctly filter out timings below 100 ms

Also known as "Yorick shouldn't write code around midnight".
parent 4d526aeb
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -45,7 +45,7 @@ actions_per_method.each do |method, actions|
min = timings[0]
max = timings[-1]
 
next if average >= 100
next if average < 100
 
rows << [method, actions.length, average.round(2), min.round(2), max.round(2)]
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment