Skip to content

Commit

Permalink
Update osmo integration test target profit again.
Browse files Browse the repository at this point in the history
  • Loading branch information
dowlandaiello committed Oct 14, 2024
1 parent f7d577f commit 42da5b4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions local-interchaintest/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,14 +144,14 @@ pub fn test_osmo_arb(arbfile: Option<Value>) -> Result<(), Box<dyn Error + Send
println!("OSMOSIS BOT PROFIT: {osmo_profit}");

util::assert_err(
"200000 + PROFIT_MARGIN > profit > 200000 - PROFIT_MARGIN",
9000000 + ERROR_MARGIN_PROFIT > osmo_profit && osmo_profit > 9000000 - ERROR_MARGIN_PROFIT,
"9500000 + PROFIT_MARGIN > profit > 9500000 - PROFIT_MARGIN",
9500000 + ERROR_MARGIN_PROFIT > osmo_profit && osmo_profit > 9500000 - ERROR_MARGIN_PROFIT,
true,
)?;
util::assert_err(
"200000 + PROFIT_MARGIN > auction_profit > 200000 - PROFIT_MARGIN",
200000 + ERROR_MARGIN_PROFIT > auction_profit
&& auction_profit > 200000 - ERROR_MARGIN_PROFIT,
"9500000 + PROFIT_MARGIN > auction_profit > 9500000 - PROFIT_MARGIN",
9500000 + ERROR_MARGIN_PROFIT > auction_profit
&& auction_profit > 9500000 - ERROR_MARGIN_PROFIT,
true,
)?;

Expand Down

0 comments on commit 42da5b4

Please sign in to comment.