Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Sources/ObservationTesting/FulfillmentOfCondition.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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.
///
Expand All @@ -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,
Expand Down