Skip to content

Commit

Permalink
Smoketest fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
zbuc committed Jan 19, 2024
1 parent ed1ddea commit d8df8c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bin/pcli/tests/network_integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -682,8 +682,8 @@ fn swap() {
.stdout(predicate::str::is_match(r"1\s*1gm").unwrap())
// Address 0 has some penumbra.
.stdout(predicate::str::is_match(r"0\s*.*penumbra").unwrap())
// Address 1 has 1000penumbra.
.stdout(predicate::str::is_match(r"1\s*1000(\.[0-9]+)?penumbra").unwrap());
// Address 1 has 999penumbra.
.stdout(predicate::str::is_match(r"1\s*999(\.[0-9]+)?penumbra").unwrap());
}

// Note: As part of #2589, we changed the way DEX calculations are performed. In particular,
Expand Down

0 comments on commit d8df8c7

Please sign in to comment.