From f2ffb3d35168abf317ed0ce6b413be1b6167db07 Mon Sep 17 00:00:00 2001 From: Willem Wyndham Date: Wed, 4 Oct 2023 16:20:16 -0400 Subject: [PATCH] fix: fmt --- cmd/crates/soroban-test/tests/it/integration/util.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cmd/crates/soroban-test/tests/it/integration/util.rs b/cmd/crates/soroban-test/tests/it/integration/util.rs index 8edc144738..951f20340e 100644 --- a/cmd/crates/soroban-test/tests/it/integration/util.rs +++ b/cmd/crates/soroban-test/tests/it/integration/util.rs @@ -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(); }