From a976b0db24630136462cdaa7287105fe16551c5a Mon Sep 17 00:00:00 2001 From: Stuart Montgomery Date: Thu, 1 May 2025 11:17:53 -0500 Subject: [PATCH] Work around a macOS CI failure --- Tests/TestingTests/IssueTests.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Tests/TestingTests/IssueTests.swift b/Tests/TestingTests/IssueTests.swift index 6ea1a5827..cc0a7acf5 100644 --- a/Tests/TestingTests/IssueTests.swift +++ b/Tests/TestingTests/IssueTests.swift @@ -491,6 +491,7 @@ final class IssueTests: XCTestCase { }.run(configuration: .init()) } +#if !SWT_TARGET_OS_APPLE || SWT_FIXED_149299786 func testErrorCheckingWithExpect() async throws { let expectationFailed = expectation(description: "Expectation failed") expectationFailed.isInverted = true @@ -610,6 +611,7 @@ final class IssueTests: XCTestCase { await fulfillment(of: [expectationFailed], timeout: 0.0) } +#endif func testErrorCheckingWithExpect_mismatchedErrorDescription() async throws { let expectationFailed = expectation(description: "Expectation failed")