Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Sources/AsyncSequenceValidation/Expectation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ extension AsyncSequenceValidationDiagram {
return "unexpected failure"
case .specificationViolationGotValueAfterIteration(let actual):
return "specification violation got \"\(actual)\" after iteration terminated"
case .specificationViolationGotFailureAfterIteration(let error):
case .specificationViolationGotFailureAfterIteration:
return "specification violation got failure after iteration terminated"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import AsyncAlgorithms
import Foundation
import XCTest
@preconcurrency import XCTest

public struct InfiniteAsyncSequence<Value: Sendable>: AsyncSequence, Sendable {
public typealias Element = Value
Expand Down
2 changes: 0 additions & 2 deletions Tests/AsyncAlgorithmsTests/Support/ManualClock.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
//
//===----------------------------------------------------------------------===//

import ClockStub

public struct ManualClock: Clock {
public struct Step: DurationProtocol {
fileprivate var rawValue: Int
Expand Down
2 changes: 1 addition & 1 deletion Tests/AsyncAlgorithmsTests/TestBufferedByteIterator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
//===----------------------------------------------------------------------===//

import XCTest
@preconcurrency import XCTest
import AsyncAlgorithms

final class TestBufferedByteIterator: XCTestCase {
Expand Down
2 changes: 1 addition & 1 deletion Tests/AsyncAlgorithmsTests/TestChain.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
//===----------------------------------------------------------------------===//

import XCTest
@preconcurrency import XCTest
import AsyncAlgorithms

final class TestChain2: XCTestCase {
Expand Down
2 changes: 1 addition & 1 deletion Tests/AsyncAlgorithmsTests/TestChannel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
//===----------------------------------------------------------------------===//

import XCTest
@preconcurrency import XCTest
import AsyncAlgorithms

final class TestChannel: XCTestCase {
Expand Down
2 changes: 1 addition & 1 deletion Tests/AsyncAlgorithmsTests/TestCombineLatest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
//===----------------------------------------------------------------------===//

import XCTest
@preconcurrency import XCTest
import AsyncAlgorithms

final class TestCombineLatest2: XCTestCase {
Expand Down
2 changes: 1 addition & 1 deletion Tests/AsyncAlgorithmsTests/TestCompacted.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
//===----------------------------------------------------------------------===//

import XCTest
@preconcurrency import XCTest
import AsyncAlgorithms

final class TestCompacted: XCTestCase {
Expand Down
2 changes: 1 addition & 1 deletion Tests/AsyncAlgorithmsTests/TestInterspersed.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
//===----------------------------------------------------------------------===//

import XCTest
@preconcurrency import XCTest
import AsyncAlgorithms

final class TestInterspersed: XCTestCase {
Expand Down
2 changes: 1 addition & 1 deletion Tests/AsyncAlgorithmsTests/TestJoin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
//===----------------------------------------------------------------------===//

import XCTest
@preconcurrency import XCTest
import AsyncAlgorithms

extension Sequence where Element: Sequence, Element.Element: Equatable & Sendable {
Expand Down
2 changes: 1 addition & 1 deletion Tests/AsyncAlgorithmsTests/TestLazy.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
//===----------------------------------------------------------------------===//

import XCTest
@preconcurrency import XCTest
import AsyncAlgorithms

final class TestLazy: XCTestCase {
Expand Down
2 changes: 1 addition & 1 deletion Tests/AsyncAlgorithmsTests/TestManualClock.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
//===----------------------------------------------------------------------===//

import XCTest
@preconcurrency import XCTest
import AsyncAlgorithms

final class TestManualClock: XCTestCase {
Expand Down
2 changes: 1 addition & 1 deletion Tests/AsyncAlgorithmsTests/TestMerge.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
//===----------------------------------------------------------------------===//

import XCTest
@preconcurrency import XCTest
import AsyncAlgorithms

final class TestMerge2: XCTestCase {
Expand Down
2 changes: 1 addition & 1 deletion Tests/AsyncAlgorithmsTests/TestReductions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
//===----------------------------------------------------------------------===//

import XCTest
@preconcurrency import XCTest
import AsyncAlgorithms

final class TestReductions: XCTestCase {
Expand Down
2 changes: 1 addition & 1 deletion Tests/AsyncAlgorithmsTests/TestTaskFirst.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
//===----------------------------------------------------------------------===//

import XCTest
@preconcurrency import XCTest
@testable import AsyncAlgorithms

final class TestTaskFirst: XCTestCase {
Expand Down