File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1687,7 +1687,7 @@ describe('Database', () => {
16871687 'Unexpected span status message'
16881688 ) ;
16891689
1690- const expectedEventNames = [ 'Using Session' , 'exception' ] ;
1690+ const expectedEventNames = [ 'Using Session' ] ;
16911691 assert . deepStrictEqual (
16921692 actualEventNames ,
16931693 expectedEventNames ,
Original file line number Diff line number Diff line change @@ -473,7 +473,7 @@ describe('EndToEnd', () => {
473473 database . formattedName_
474474 ) ;
475475 await database . runTransactionAsync ( async transaction => {
476- await transaction ! . run ( 'SELECT 1' ) ;
476+ const [ rows ] = await transaction ! . run ( 'SELECT 1' ) ;
477477 } ) ;
478478
479479 traceExporter . forceFlush ( ) ;
Original file line number Diff line number Diff line change @@ -3395,7 +3395,7 @@ class Database extends common.GrpcServiceObject {
33953395 try {
33963396 return await runner . run ( ) ;
33973397 } catch ( e ) {
3398- setSpanErrorAndException ( span , e as Error ) ;
3398+ setSpanError ( span , e as Error ) ;
33993399 throw e ;
34003400 } finally {
34013401 span . end ( ) ;
You can’t perform that action at this time.
0 commit comments