Skip to content

Commit ea031f3

Browse files
committed
fix
1 parent 7f13f51 commit ea031f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/task.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ export class Task extends EventTarget {
533533
}
534534

535535
sortSamples(throughputSamples)
536-
const throughputStatistics = getStatisticsSorted(throughputSamples, this.#bench.retainSamples)
536+
const throughputStatistics = getStatisticsSorted(throughputSamples, this.#retainSamples)
537537

538538
/* eslint-disable perfectionist/sort-objects */
539539
this.#result = {

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import type { Task } from './task'
55
import type {
66
ConsoleTableConverter,
77
Fn,
8+
JSRuntime,
89
Samples,
910
SortedSamples,
10-
JSRuntime,
1111
Statistics,
1212
} from './types'
1313

0 commit comments

Comments
 (0)