Skip to content

Commit

Permalink
fix(CLI): ignore the expiration in contract_read test (#988)
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal authored Sep 24, 2023
1 parent 1d20f08 commit 365b184
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/crates/soroban-test/tests/it/integration_and_sandbox.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ fn contract_data_read() {
.arg("--durability=persistent")
.assert()
.success()
.stdout("COUNTER,1,4096\n");
.stdout(predicates::str::starts_with("COUNTER,1"));

sandbox
.new_assert_cmd("contract")
Expand All @@ -149,7 +149,7 @@ fn contract_data_read() {
.arg("--durability=persistent")
.assert()
.success()
.stdout("COUNTER,2,4096\n");
.stdout(predicates::str::starts_with("COUNTER,2"));
}

#[test]
Expand Down

0 comments on commit 365b184

Please sign in to comment.