Skip to content

Commit

Permalink
Fix deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
glbrntt committed Jan 17, 2025
1 parent 64874f2 commit 848314f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ struct HTTP2TransportTLSEnabledTests {

group.addTask {
do {
try await client.run()
try await client.runConnections()
} catch {
throw TLSEnabledTestsError.clientError(cause: error)
}
Expand Down
4 changes: 2 additions & 2 deletions Tests/GRPCNIOTransportHTTP2Tests/HTTP2TransportTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ final class HTTP2TransportTests: XCTestCase {
)

group.addTask {
try await client.run()
try await client.runConnections()
}

do {
Expand Down Expand Up @@ -119,7 +119,7 @@ final class HTTP2TransportTests: XCTestCase {
enabledCompression: .none
)
group.addTask {
try await client.run()
try await client.runConnections()
}

do {
Expand Down

0 comments on commit 848314f

Please sign in to comment.