Skip to content

Commit f66e0b5

Browse files
committed
pr feedback
1 parent 22d36f5 commit f66e0b5

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

  • test/benchmarks/driver_bench/src

test/benchmarks/driver_bench/src/main.mts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ import events from 'node:events';
55
import fs from 'node:fs/promises';
66
import os from 'node:os';
77
import path from 'node:path';
8-
import process from 'node:process';
98
import util from 'node:util';
109

10+
import process from 'process';
11+
1112
import {
1213
type Metric,
1314
type MetricInfo,
@@ -114,8 +115,8 @@ for (const [suite, benchmarks] of Object.entries(tests)) {
114115

115116
const metricInfoFilterByName =
116117
(testName: string) =>
117-
({ info: { test_name } }: MetricInfo) =>
118-
test_name === testName;
118+
({ info: { test_name } }: MetricInfo) =>
119+
test_name === testName;
119120

120121
const isMBsMetric = ({ name }: Metric) => name === 'megabytes_per_second';
121122

0 commit comments

Comments
 (0)