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
1 change: 1 addition & 0 deletions Sources/Containerization/IO/Writer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ import Foundation
/// A type that writes the provided Data.
public protocol Writer: Sendable {
func write(_ data: Data) throws
func close() throws
}
4 changes: 4 additions & 0 deletions Sources/Integration/ContainerTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ extension IntegrationSuite {
}
self.data.append(data)
}

func close() throws {
return
}
}

final class StdinBuffer: ReaderStream {
Expand Down