diff --git a/Sources/ObservationTesting/FulfillmentOfCondition.swift b/Sources/ObservationTesting/FulfillmentOfCondition.swift index ebf3079..fc4427a 100644 --- a/Sources/ObservationTesting/FulfillmentOfCondition.swift +++ b/Sources/ObservationTesting/FulfillmentOfCondition.swift @@ -5,7 +5,7 @@ // Copyright (c) 2026 Jacob Fielding // -extension AsyncSequence where Self: Sendable, Element: Sendable & Equatable { +extension AsyncSequence where Self: Sendable, Element: Sendable { /// Fulfill a specific condition. /// @@ -32,7 +32,7 @@ extension AsyncSequence where Self: Sendable, Element: Sendable & Equatable { } } -extension AsyncSequence where Self: Sendable, Element: Sendable & Equatable { +extension AsyncSequence where Self: Sendable, Element: Sendable { func processCondition( condition: @Sendable @isolated(any) @escaping (Element?) async throws -> Bool,