Skip to content

Commit 0efd13e

Browse files
committed
lint
1 parent 929e61d commit 0efd13e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/benchmarks/driver_bench/src/driver.mts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export type Metric = {
139139
name: 'megabytes_per_second' | 'normalized_throughput';
140140
value: number;
141141
metadata?: {
142-
improvement_direction: 'up' | 'down'
142+
improvement_direction: 'up' | 'down';
143143
};
144144
};
145145

@@ -167,7 +167,9 @@ export function metrics(test_name: string, result: number, tags?: string[]): Met
167167
tags
168168
},
169169
// FIXME: For now all of our metrics are of throughput so their improvement_direction is up,
170-
metrics: [{ name: 'megabytes_per_second', value: result, metadata: {improvement_direction: 'up'} }]
170+
metrics: [
171+
{ name: 'megabytes_per_second', value: result, metadata: { improvement_direction: 'up' } }
172+
]
171173
} as const;
172174
}
173175

0 commit comments

Comments
 (0)