File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1139,8 +1139,8 @@ class DefaultBenchmark extends Benchmark {
1139
1139
this . worstCaseCount = getWorstCaseCount ( this . plan ) ;
1140
1140
this . firstIterationTime = null ;
1141
1141
this . firstIterationScore = null ;
1142
- this . worst4Time = null ;
1143
- this . worst4Score = null ;
1142
+ this . worstTime = null ;
1143
+ this . worstScore = null ;
1144
1144
this . averageTime = null ;
1145
1145
this . averageScore = null ;
1146
1146
@@ -1161,16 +1161,16 @@ class DefaultBenchmark extends Benchmark {
1161
1161
const worstCase = [ ] ;
1162
1162
for ( let i = 0 ; i < this . worstCaseCount ; ++ i )
1163
1163
worstCase . push ( results [ i ] ) ;
1164
- this . worst4Time = mean ( worstCase ) ;
1165
- this . worst4Score = toScore ( this . worst4Time ) ;
1164
+ this . worstTime = mean ( worstCase ) ;
1165
+ this . worstScore = toScore ( this . worstTime ) ;
1166
1166
this . averageTime = mean ( results ) ;
1167
1167
this . averageScore = toScore ( this . averageTime ) ;
1168
1168
}
1169
1169
1170
1170
subScores ( ) {
1171
1171
return {
1172
1172
"First" : this . firstIterationScore ,
1173
- "Worst" : this . worst4Score ,
1173
+ "Worst" : this . worstScore ,
1174
1174
"Average" : this . averageScore ,
1175
1175
} ;
1176
1176
}
You can’t perform that action at this time.
0 commit comments