From 5fc4de809a81fd8d5ab6e0a4e7323cdee2eb472a Mon Sep 17 00:00:00 2001 From: Willem Wyndham Date: Wed, 2 Oct 2024 11:36:20 -0400 Subject: [PATCH] fix: add test to check if default is used for durability --- cmd/crates/soroban-test/tests/it/integration/util.rs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/cmd/crates/soroban-test/tests/it/integration/util.rs b/cmd/crates/soroban-test/tests/it/integration/util.rs index 22ef4fa82..6feae7860 100644 --- a/cmd/crates/soroban-test/tests/it/integration/util.rs +++ b/cmd/crates/soroban-test/tests/it/integration/util.rs @@ -95,14 +95,7 @@ pub async fn extend_contract(sandbox: &TestEnv, id: &str) { } pub async fn extend(sandbox: &TestEnv, id: &str, value: Option<&str>) { - let mut args = vec![ - "--id", - id, - "--durability", - "persistent", - "--ledgers-to-extend", - "100001", - ]; + let mut args = vec!["--id", id, "--ledgers-to-extend", "100001"]; if let Some(value) = value { args.push("--key"); args.push(value);