Skip to content

Commit

Permalink
Remove workaround for issue #43
Browse files Browse the repository at this point in the history
  • Loading branch information
gjcairo committed Jan 17, 2025
1 parent 808e6fe commit 60d42f4
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Tests/GRPCNIOTransportHTTP2Tests/HTTP2TransportTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1392,8 +1392,6 @@ final class HTTP2TransportTests: XCTestCase {
let request = ClientRequest(message: input)
try await control.serverStream(request: request) { response in
XCTAssertEqual(Array(response.metadata["echo-scheme"]), ["http"])
// Workaround https://github.com/grpc/grpc-swift-nio-transport/issues/43
for try await _ in response.messages {}
}
}
}
Expand Down Expand Up @@ -1424,8 +1422,6 @@ final class HTTP2TransportTests: XCTestCase {
}
try await control.bidiStream(request: request) { response in
XCTAssertEqual(Array(response.metadata["echo-scheme"]), ["http"])
// Workaround https://github.com/grpc/grpc-swift-nio-transport/issues/43
for try await _ in response.messages {}
}
}
}
Expand Down

0 comments on commit 60d42f4

Please sign in to comment.