Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Sources/HummingbirdTesting/Application+Test.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
public import Hummingbird

/// HTTP Scheme to use with AsyncHTTPClient test framework
public enum TestHTTPScheme: String {
public enum TestHTTPScheme: String, Sendable {
case http
case https
}

/// Type of test framework
public struct TestingSetup {
enum Internal {
public struct TestingSetup: Sendable {
enum Internal: Sendable {
case router
case live
case ahc(TestHTTPScheme)
Expand Down
Loading