Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal committed Oct 11, 2023
1 parent bbf54e0 commit f1b04e4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cmd/crates/soroban-test/tests/it/integration/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ pub async fn bump(sandbox: &TestEnv, id: &str, value: Option<&str>) {
"persistent",
"--ledgers-to-expire",
"100000",
];
if let Some(value) = value{
args.push("--key");
args.push(value);
}
];
if let Some(value) = value {
args.push("--key");
args.push(value);
}
let cmd: contract::bump::Cmd = sandbox.cmd_arr(&args);
cmd.run().await.unwrap();
}

0 comments on commit f1b04e4

Please sign in to comment.