Skip to content

Commit 8887e1f

Browse files
committed
remove Combine imports
1 parent ace9551 commit 8887e1f

File tree

4 files changed

+0
-9
lines changed

4 files changed

+0
-9
lines changed

Sources/SimpleHTTP/Interceptor/CompositeInterceptor.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import Foundation
2-
import Combine
32

43
/// Use an Array of `Interceptor` as a single `Interceptor`
54
public struct CompositeInterceptor: ExpressibleByArrayLiteral, Sequence {

Sources/SimpleHTTP/Interceptor/Interceptor.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import Foundation
2-
import Combine
32

43
public typealias Interceptor = RequestInterceptor & ResponseInterceptor
54

Tests/SimpleHTTPTests/Response/URLDataResponseTests.swift

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
11
import XCTest
2-
import Combine
32
@testable import SimpleHTTP
43

54
class URLDataResponseTests: XCTestCase {
6-
var cancellables: Set<AnyCancellable> = []
7-
8-
override func tearDown() {
9-
cancellables = []
10-
}
115

126
func test_validate_responseIsError_dataIsEmpty_converterIsNotCalled() throws {
137
let response = URLDataResponse(data: Data(), response: HTTPURLResponse.notFound)

Tests/SimpleHTTPTests/Session/SessionTests.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import XCTest
2-
import Combine
32
@testable import SimpleHTTP
43

54
class SessionAsyncTests: XCTestCase {

0 commit comments

Comments
 (0)