Skip to content

Commit c4056f8

Browse files
committed
fix lint
1 parent 1e99187 commit c4056f8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

plugins/node/opentelemetry-instrumentation-pg/test/pg-pool.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ describe('pg-pool', () => {
654654
const finish = () => {
655655
poolAux.end();
656656
done();
657-
}
657+
};
658658

659659
let completed = 0;
660660
poolAux.connect((err, client, release) => {
@@ -829,7 +829,7 @@ describe('pg-pool', () => {
829829
pool1.end();
830830
pool2.end();
831831
done();
832-
}
832+
};
833833

834834
let completed = 0;
835835
pool1.connect((err, client, release) => {
@@ -963,9 +963,9 @@ describe('pg-pool (ESM)', () => {
963963
'pg.connect',
964964
'pg-pool.connect',
965965
'pg.connect',
966-
'pg.query:SELECT otel_pg_database'
966+
'pg.query:SELECT otel_pg_database',
967967
];
968-
for (let expectedName of expectedRemainingSpanNames) {
968+
for (const expectedName of expectedRemainingSpanNames) {
969969
span = spans.shift()!;
970970
assert.strictEqual(span.name, expectedName);
971971
}

0 commit comments

Comments
 (0)