Skip to content

Commit

Permalink
fix expectorate test
Browse files Browse the repository at this point in the history
  • Loading branch information
jgallagher committed Apr 3, 2024
1 parent 291258c commit c07897c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-tools/reconfigurator-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ fn cmd_sled_show(
let sled_id = args.sled_id;
let sled_resources = planning_input
.sled_resources(&sled_id)
.ok_or_else(|| anyhow!("no sled with id {:?}", sled_id))?;
.ok_or_else(|| anyhow!("no sled with id {sled_id}"))?;
let mut s = String::new();
swriteln!(s, "sled {}", sled_id);
swriteln!(s, "subnet {}", sled_resources.subnet.net());
Expand Down

0 comments on commit c07897c

Please sign in to comment.