From f538ece6c007278c58a3f9136c5d7074ffa44729 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Sat, 9 May 2026 18:07:24 -0400 Subject: [PATCH] fix(cli): repair verification failures Update the sandbox SSH snapshot to match the current access-command error and bring system repair imports in line with clippy's absolute path lint. --- lib/crates/fabro-cli/src/commands/system/repair.rs | 3 ++- lib/crates/fabro-cli/tests/it/cmd/sandbox_ssh.rs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/crates/fabro-cli/src/commands/system/repair.rs b/lib/crates/fabro-cli/src/commands/system/repair.rs index df340251b..fe686649e 100644 --- a/lib/crates/fabro-cli/src/commands/system/repair.rs +++ b/lib/crates/fabro-cli/src/commands/system/repair.rs @@ -5,6 +5,7 @@ use serde::Serialize; use crate::args::{SystemRepairArgs, SystemRepairCommand, SystemRepairRunsArgs}; use crate::command_context::CommandContext; +use crate::server_client::Client; use crate::shared::print_json_pretty; pub(super) async fn repair_command( @@ -66,7 +67,7 @@ fn repair_runs_from( async fn delete_repair_runs<'a>( response: &'a types::SystemRepairRunsResponse, - server: &crate::server_client::Client, + server: &Client, yes: bool, ) -> RepairRunsDeleteSummary<'a> { let mut summary = RepairRunsDeleteSummary { diff --git a/lib/crates/fabro-cli/tests/it/cmd/sandbox_ssh.rs b/lib/crates/fabro-cli/tests/it/cmd/sandbox_ssh.rs index 820a24b93..de3aebe93 100644 --- a/lib/crates/fabro-cli/tests/it/cmd/sandbox_ssh.rs +++ b/lib/crates/fabro-cli/tests/it/cmd/sandbox_ssh.rs @@ -44,7 +44,7 @@ fn sandbox_ssh_rejects_non_daytona_run() { exit_code: 1 ----- stdout ----- ----- stderr ----- - × Sandbox provider does not support this capability. + × Sandbox provider does not support access commands. "); }