@@ -574,7 +574,7 @@ final class TracingInterceptorTests: XCTestCase {
574574 [
575575 " Received request " ,
576576 " Finished processing request " ,
577- " Sent response end "
577+ " Sent response end " ,
578578 ]
579579 )
580580 } assertAttributes: { attributes in
@@ -591,7 +591,7 @@ final class TracingInterceptorTests: XCTestCase {
591591 " network.transport " : . string( " tcp " ) ,
592592 " network.type " : . string( " ipv4 " ) ,
593593 " client.address " : . string( " 10.1.2.80 " ) ,
594- " client.port " : . int( 567 )
594+ " client.port " : . int( 567 ) ,
595595 ]
596596 )
597597 } assertStatus: { status in
@@ -656,7 +656,7 @@ final class TracingInterceptorTests: XCTestCase {
656656 [
657657 " Received request " ,
658658 " Finished processing request " ,
659- " Sent response end "
659+ " Sent response end " ,
660660 ]
661661 )
662662 } assertAttributes: { attributes in
@@ -673,7 +673,7 @@ final class TracingInterceptorTests: XCTestCase {
673673 " network.transport " : . string( " tcp " ) ,
674674 " network.type " : . string( " ipv6 " ) ,
675675 " client.address " : . string( " 2001::130F:::09C0:876A:130B " ) ,
676- " client.port " : . int( 1234 )
676+ " client.port " : . int( 1234 ) ,
677677 ]
678678 )
679679 } assertStatus: { status in
@@ -738,7 +738,7 @@ final class TracingInterceptorTests: XCTestCase {
738738 [
739739 " Received request " ,
740740 " Finished processing request " ,
741- " Sent response end "
741+ " Sent response end " ,
742742 ]
743743 )
744744 } assertAttributes: { attributes in
@@ -752,7 +752,7 @@ final class TracingInterceptorTests: XCTestCase {
752752 " network.peer.address " : . string( " some-path " ) ,
753753 " network.transport " : . string( " tcp " ) ,
754754 " network.type " : . string( " unix " ) ,
755- " client.address " : . string( " some-path " )
755+ " client.address " : . string( " some-path " ) ,
756756 ]
757757 )
758758 } assertStatus: { status in
@@ -846,7 +846,7 @@ final class TracingInterceptorTests: XCTestCase {
846846 " network.transport " : . string( " tcp " ) ,
847847 " network.type " : . string( " ipv4 " ) ,
848848 " client.address " : . string( " 10.1.2.80 " ) ,
849- " client.port " : . int( 567 )
849+ " client.port " : . int( 567 ) ,
850850 ]
851851 )
852852 } assertStatus: { status in
@@ -902,7 +902,7 @@ final class TracingInterceptorTests: XCTestCase {
902902 " network.transport " : . string( " tcp " ) ,
903903 " network.type " : . string( " ipv4 " ) ,
904904 " client.address " : . string( " 10.1.2.80 " ) ,
905- " client.port " : . int( 567 )
905+ " client.port " : . int( 567 ) ,
906906 ]
907907 )
908908 } assertStatus: { status in
@@ -937,7 +937,9 @@ final class TracingInterceptorTests: XCTestCase {
937937 // Make sure we get the metadata injected into our service context
938938 XCTAssertEqual ( ServiceContext . current? . traceID, traceIDString)
939939
940- return StreamingServerResponse < String > ( error: RPCError ( code: . unavailable, message: " Test error " ) )
940+ return StreamingServerResponse < String > (
941+ error: RPCError ( code: . unavailable, message: " Test error " )
942+ )
941943 }
942944
943945 XCTAssertThrowsError ( try response. accepted. get ( ) )
@@ -948,7 +950,7 @@ final class TracingInterceptorTests: XCTestCase {
948950 [
949951 " Received request " ,
950952 " Finished processing request " ,
951- " Sent error response "
953+ " Sent error response " ,
952954 ]
953955 )
954956 } assertAttributes: { attributes in
@@ -966,7 +968,7 @@ final class TracingInterceptorTests: XCTestCase {
966968 " network.transport " : . string( " tcp " ) ,
967969 " network.type " : . string( " ipv4 " ) ,
968970 " client.address " : . string( " 10.1.2.80 " ) ,
969- " client.port " : . int( 567 )
971+ " client.port " : . int( 567 ) ,
970972 ]
971973 )
972974 } assertStatus: { status in
0 commit comments