File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
experimental/packages/otlp-transformer/test Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -345,7 +345,10 @@ describe('Logs', () => {
345345 const serialized = ProtobufLogsSerializer . serializeRequest ( [ ] ) ;
346346 assert . ok ( serialized , 'serialized response is undefined' ) ;
347347 const decoded = fromBinary ( ExportLogsServiceRequestSchema , serialized ) ;
348- assert . deepStrictEqual ( toJson ( ExportLogsServiceRequestSchema , decoded ) , { } ) ;
348+ assert . deepStrictEqual (
349+ toJson ( ExportLogsServiceRequestSchema , decoded ) ,
350+ { }
351+ ) ;
349352 } ) ;
350353
351354 it ( 'deserializes a response' , ( ) => {
Original file line number Diff line number Diff line change @@ -485,7 +485,10 @@ describe('Trace', () => {
485485 const serialized = ProtobufTraceSerializer . serializeRequest ( [ ] ) ;
486486 assert . ok ( serialized , 'serialized response is undefined' ) ;
487487 const decoded = fromBinary ( ExportTraceServiceRequestSchema , serialized ) ;
488- assert . deepStrictEqual ( toJson ( ExportTraceServiceRequestSchema , decoded ) , { } ) ;
488+ assert . deepStrictEqual (
489+ toJson ( ExportTraceServiceRequestSchema , decoded ) ,
490+ { }
491+ ) ;
489492 } ) ;
490493
491494 it ( 'deserializes a response' , ( ) => {
You can’t perform that action at this time.
0 commit comments