Skip to content

Commit

Permalink
update test timeout to 30 sec
Browse files Browse the repository at this point in the history
  • Loading branch information
imberezin committed May 30, 2024
1 parent f2697f2 commit bc054db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Example/Tests/Basic/PlayerControllerTest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class PlayerControllerTest: XCTestCase {
DispatchQueue.main.asyncAfter(deadline: .now() + 9) {
asyncExpectation.fulfill()
}
waitForExpectations(timeout: 10, handler: nil)
waitForExpectations(timeout: 30, handler: nil)
}

/// Test to make sure pause/play events are received after ended + seeked event.
Expand Down Expand Up @@ -157,6 +157,6 @@ class PlayerControllerTest: XCTestCase {
}
player.play()

waitForExpectations(timeout: 20, handler: nil)
waitForExpectations(timeout: 30, handler: nil)
}
}

0 comments on commit bc054db

Please sign in to comment.