Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mhennoch committed Jan 13, 2025
1 parent af4f376 commit ecf671e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,18 +100,18 @@ export function assertInjection(
logger.info('my-log-message');
});

setTimeout( () => {
setTimeout(() => {
assert.strictEqual(stream.record['trace_id'], traceId);
assert.strictEqual(stream.record['span_id'], spanId);

for (const [key, value] of extra || []) {
assert.strictEqual(
stream.record[key],
value,
`Invalid value for "${key}": ${util.inspect(stream.record[key])}`
);
}
}, 20)
}
}, 20);
}

export function exporterUrl(exporter: any) {
Expand Down

0 comments on commit ecf671e

Please sign in to comment.