Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
NotJeremyLiu committed Nov 14, 2023
1 parent f3a67aa commit dbc5dfd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use cosmwasm_std::{
testing::{mock_dependencies, mock_env, mock_info},
to_binary, Addr, Coin, ContractResult as SystemContractResult, QuerierResult,
ReplyOn::Never,
SubMsg, SystemResult, Uint128, WasmMsg, WasmQuery,
SubMsg, SystemResult, Uint128, WasmMsg, WasmQuery, Decimal,
};
use cw20::{BalanceResponse, Cw20Coin, Cw20ExecuteMsg, Cw20ReceiveMsg};
use cw_utils::PaymentError::NonPayable;
Expand Down Expand Up @@ -81,7 +81,7 @@ struct Params {
],
minimum_receive: None,
to: None,
max_spread: None,
max_spread: Some(Decimal::percent(50)),
})?,
})?,
funds: vec![],
Expand Down Expand Up @@ -143,7 +143,7 @@ struct Params {
],
minimum_receive: None,
to: None,
max_spread: None,
max_spread: Some(Decimal::percent(50)),
})?,
})?,
funds: vec![],
Expand Down

0 comments on commit dbc5dfd

Please sign in to comment.