Skip to content

Commit

Permalink
fix: tests with higher ft deposit
Browse files Browse the repository at this point in the history
  • Loading branch information
yomarion committed Sep 19, 2023
1 parent a02f633 commit 5a506cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions mocks/src/fpo_oracle_mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ impl FPOContract {
mod tests {

use super::*;
use crate::fpo_oracle_mock::AccountId;
use near_sdk::{testing_env, Balance, Gas, MockedBlockchain, VMContext};
use near_sdk_sim::to_yocto;

Expand Down
2 changes: 1 addition & 1 deletion tests/sim/fungible_conversion_proxy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ fn init_fungible() -> (
contract_id: "mockedft".to_string(),
bytes: &MOCKED_BYTES,
signer_account: root,
deposit: to_yocto("7")
deposit: to_yocto("8")
);

let account = root.create_user("alice".to_string(), to_yocto(DEFAULT_BALANCE));
Expand Down
2 changes: 1 addition & 1 deletion tests/sim/fungible_proxy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ fn init_fungible() -> (
contract_id: "mockedft".to_string(),
bytes: &MOCKED_BYTES,
signer_account: root,
deposit: to_yocto("7")
deposit: to_yocto("8")
);

let account = root.create_user("alice".to_string(), to_yocto(DEFAULT_BALANCE));
Expand Down

0 comments on commit 5a506cc

Please sign in to comment.