Skip to content

Commit

Permalink
Increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
rocxteady committed May 9, 2024
1 parent eafe1cc commit 1cf2b0e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Tests/RestingTests/RestClientTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ final class RestClientTests: XCTestCase {
expectation.fulfill()
}

wait(for: [expectation], timeout: 5.0)
wait(for: [expectation], timeout: 30.0)
}

func testDownloadWithProgressAsyncAwait() {
Expand Down Expand Up @@ -129,7 +129,7 @@ final class RestClientTests: XCTestCase {
currentProgress = progress
}

wait(for: [expectation], timeout: 5.0)
wait(for: [expectation], timeout: 30.0)
}

func testCancellingDownloadAsyncAwait() {
Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -262,6 +262,6 @@ final class RestClientTests: XCTestCase {
expectation.fulfill()
}

wait(for: [expectation], timeout: 5.0)
wait(for: [expectation], timeout: 30.0)
}
}

0 comments on commit 1cf2b0e

Please sign in to comment.