File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Tests/ExportersTests/OpenTelemetryProtocol Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ class OtlpMetricExproterTests: XCTestCase {
7575 // Start the server and print its address once it has started.
7676 let server = Server . insecure ( group: serverGroup)
7777 . withServiceProviders ( [ fakeCollector] )
78- . bind ( host: " localhost " , port: 55680 )
78+ . bind ( host: " localhost " , port: 4317 )
7979
8080 server. map {
8181 $0. channel. localAddress
@@ -87,7 +87,7 @@ class OtlpMetricExproterTests: XCTestCase {
8787
8888 func startChannel( ) -> ClientConnection {
8989 let channel = ClientConnection . insecure ( group: channelGroup)
90- . connect ( host: " localhost " , port: 55680 )
90+ . connect ( host: " localhost " , port: 4317 )
9191 return channel
9292 }
9393
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ class OtlpTraceExporterTests: XCTestCase {
9595 // Start the server and print its address once it has started.
9696 let server = Server . insecure ( group: serverGroup)
9797 . withServiceProviders ( [ fakeCollector] )
98- . bind ( host: " localhost " , port: 55680 )
98+ . bind ( host: " localhost " , port: 4317 )
9999
100100 server. map {
101101 $0. channel. localAddress
@@ -107,7 +107,7 @@ class OtlpTraceExporterTests: XCTestCase {
107107
108108 func startChannel( ) -> ClientConnection {
109109 let channel = ClientConnection . insecure ( group: channelGroup)
110- . connect ( host: " localhost " , port: 55680 )
110+ . connect ( host: " localhost " , port: 4317 )
111111 return channel
112112 }
113113}
You can’t perform that action at this time.
0 commit comments