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 Tests/CLITests/Subcommands/Containers/TestCLICreate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class TestCLICreateCommand: CLITest {
args.append("\"hello world\"")

#expect(throws: Never.self, "expected container create maximum port publishes to succeed") {
let (_, error, status) = try run(arguments: args)
let (_, _, error, status) = try run(arguments: args)
defer { try? doRemove(name: name) }
if status != 0 {
throw CLIError.executionFailed("command failed: \(error)")
Expand All @@ -85,7 +85,7 @@ class TestCLICreateCommand: CLITest {
args.append("\"hello world\"")

#expect(throws: CLIError.self, "expected container create more than maximum port publishes to fail") {
let (_, error, status) = try run(arguments: args)
let (_, _, error, status) = try run(arguments: args)
defer { try? doRemove(name: name) }
if status != 0 {
throw CLIError.executionFailed("command failed: \(error)")
Expand Down