Skip to content

Commit

Permalink
Fix flacky test case on Xcode 14.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle-Ye committed Dec 20, 2023
1 parent 5e63ace commit 4662195
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -972,8 +972,8 @@ final class PublisherConcurrencyTests: XCTestCase {
}

XCTAssertEqual(numberOfTasksFinished, 3)
// FIXME: This test case will sometimes fail on macOS 13 + Xcode 15.0.1
#if swift(>=5.9) && canImport(Darwin)
// FIXME: This test case will sometimes fail on macOS 13 + Xcode 15.0.1/Xcode 14.3.1
#if swift(>=5.8) && canImport(Darwin)
#else
XCTAssertEqual(subscription.history, [.requested(.max(1)), .requested(.max(1))])
#endif
Expand Down

0 comments on commit 4662195

Please sign in to comment.