Skip to content

Commit

Permalink
fix supported
Browse files Browse the repository at this point in the history
  • Loading branch information
glbrntt committed Jan 9, 2025
1 parent 55ee063 commit fd17975
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions Tests/GRPCNIOTransportHTTP2Tests/HTTP2TransportTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1641,12 +1641,11 @@ final class HTTP2TransportTests: XCTestCase {
}

extension [HTTP2TransportTests.Transport] {
static let supported = [
HTTP2TransportTests.Transport(server: .posix, client: .posix),
HTTP2TransportTests.Transport(server: .transportServices, client: .transportServices),
HTTP2TransportTests.Transport(server: .transportServices, client: .posix),
HTTP2TransportTests.Transport(server: .posix, client: .transportServices),
]
static let supported: [HTTP2TransportTests.Transport] = TransportKind.allCases.flatMap { server in
TransportKind.allCases.map { client in
HTTP2TransportTests.Transport(server: server, client: client)
}
}
}

extension ControlInput {
Expand Down

0 comments on commit fd17975

Please sign in to comment.