File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
plugins/node/opentelemetry-instrumentation-pg/test Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments