Skip to content

Commit

Permalink
Clean up white space
Browse files Browse the repository at this point in the history
  • Loading branch information
drewstaylor committed Aug 7, 2023
1 parent 7532633 commit 225f11e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ fn test_buy_cw20() {
id: "firstswap".to_string(),
payment_token: Some(Addr::unchecked(cw20.clone())),
token_id: token_id.clone(),
expires: Expiration::from(cw20::Expiration::AtHeight(384798573487439743)),
expires: Expiration::from(cw20::Expiration::AtHeight(384798573487439743)),
price: Uint128::from(100000_u32),
swap_type: true,
};
Expand Down Expand Up @@ -302,7 +302,7 @@ fn test_invalid_payment_cw20() {
id: "firstswap".to_string(),
payment_token: Some(Addr::unchecked(cw20.clone())),
token_id: token_id.clone(),
expires: Expiration::from(cw20::Expiration::AtHeight(384798573487439743)),
expires: Expiration::from(cw20::Expiration::AtHeight(384798573487439743)),
price: Uint128::from(100000_u32),
swap_type: true,
};
Expand Down Expand Up @@ -407,7 +407,7 @@ fn test_overpayment_cw20() {
id: "firstswap".to_string(),
payment_token: Some(Addr::unchecked(cw20.clone())),
token_id: token_id.clone(),
expires: Expiration::from(cw20::Expiration::AtHeight(384798573487439743)),
expires: Expiration::from(cw20::Expiration::AtHeight(384798573487439743)),
price: Uint128::from(100000_u32),
swap_type: true,
};
Expand Down Expand Up @@ -529,7 +529,7 @@ fn test_buy_native() {
id: "firstswap".to_string(),
payment_token: None,
token_id: token_id.clone(),
expires: Expiration::from(cw20::Expiration::AtHeight(384798573487439743)),
expires: Expiration::from(cw20::Expiration::AtHeight(384798573487439743)),
price: Uint128::from(1000000000000000000_u128), // 1 ARCH as aarch
swap_type: true,
};
Expand Down Expand Up @@ -634,7 +634,7 @@ fn test_invalid_payment_native() {
id: "firstswap".to_string(),
payment_token: None,
token_id: token_id.clone(),
expires: Expiration::from(cw20::Expiration::AtHeight(384798573487439743)),
expires: Expiration::from(cw20::Expiration::AtHeight(384798573487439743)),
price: Uint128::from(5000000000000000000_u128), // 5 ARCH as aarch
swap_type: true,
};
Expand Down Expand Up @@ -743,7 +743,7 @@ fn test_overpayment_native() {
id: "firstswap".to_string(),
payment_token: None,
token_id: token_id.clone(),
expires: Expiration::from(cw20::Expiration::AtHeight(384798573487439743)),
expires: Expiration::from(cw20::Expiration::AtHeight(384798573487439743)),
price: Uint128::from(1000000000000000000_u128), // 1 ARCH as aarch
swap_type: true,
};
Expand Down

0 comments on commit 225f11e

Please sign in to comment.