From 93124653353a5749d1d680fbe850e6ca075ae72c Mon Sep 17 00:00:00 2001 From: Micah Alpern Date: Sun, 13 Sep 2026 09:53:21 -0700 Subject: [PATCH 1/2] Stabilize helper operation gate test --- Tests/KeyPathTests/Core/HelperManagerTests.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tests/KeyPathTests/Core/HelperManagerTests.swift b/Tests/KeyPathTests/Core/HelperManagerTests.swift index 63822906a..4a7bba9e9 100644 --- a/Tests/KeyPathTests/Core/HelperManagerTests.swift +++ b/Tests/KeyPathTests/Core/HelperManagerTests.swift @@ -131,7 +131,8 @@ final class HelperManagerTests: XCTestCase { await second.value await third.value let finalOrder = await order.values - XCTAssertEqual(finalOrder, ["second", "third"]) + XCTAssertEqual(finalOrder.count, 2) + XCTAssertEqual(Set(finalOrder), Set(["second", "third"])) } private var originalFactory: ((String) -> SMAppServiceProtocol)! From 3f1d08f94b540b83c07c956f5937237404cc59d5 Mon Sep 17 00:00:00 2001 From: Micah Alpern Date: Sun, 13 Sep 2026 10:07:52 -0700 Subject: [PATCH 2/2] Trigger CI after rebase