diff --git a/Tests/RestingTests/RestClientTests.swift b/Tests/RestingTests/RestClientTests.swift index e6afccb..a32ff61 100644 --- a/Tests/RestingTests/RestClientTests.swift +++ b/Tests/RestingTests/RestClientTests.swift @@ -91,7 +91,7 @@ final class RestClientTests: XCTestCase { expectation.fulfill() } - wait(for: [expectation], timeout: 5.0) + wait(for: [expectation], timeout: 30.0) } func testDownloadWithProgressAsyncAwait() { @@ -129,7 +129,7 @@ final class RestClientTests: XCTestCase { currentProgress = progress } - wait(for: [expectation], timeout: 5.0) + wait(for: [expectation], timeout: 30.0) } func testCancellingDownloadAsyncAwait() { @@ -158,7 +158,7 @@ final class RestClientTests: XCTestCase { } restClient.cancel() - wait(for: [expectation], timeout: 5.0) + wait(for: [expectation], timeout: 30.0) } func testPublisher() throws { @@ -262,6 +262,6 @@ final class RestClientTests: XCTestCase { expectation.fulfill() } - wait(for: [expectation], timeout: 5.0) + wait(for: [expectation], timeout: 30.0) } }