Skip to content

Commit

Permalink
Rebase cleanup, fix up tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeHartnell authored and Jake Hartnell committed Mar 26, 2024
1 parent fc19b74 commit b7247f4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,12 @@ use dao_testing::test_tube::{
};
use dao_voting::threshold::ActiveThreshold;
use osmosis_test_tube::{
osmosis_std::types::cosmwasm::wasm::v1::MsgExecuteContractResponse, Account, Bank, Module,
OsmosisTestApp, RunnerError, RunnerExecuteResult, RunnerResult, SigningAccount, Wasm,
osmosis_std::types::{
cosmos::bank::v1beta1::QueryAllBalancesRequest,
cosmwasm::wasm::v1::MsgExecuteContractResponse,
},
Account, Bank, Module, OsmosisTestApp, RunnerError, RunnerExecuteResult, RunnerResult,
SigningAccount, Wasm,
};
use serde::de::DeserializeOwned;
use std::path::PathBuf;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
use crate::{
msg::{ExecuteMsg, InstantiateMsg, QueryMsg, TokenInfo},
tests::test_tube::test_env::TokenVotingContract,
ContractError,
};
use cosmwasm_std::{to_json_binary, Addr, Coin, Decimal, Uint128, WasmMsg};
use cw_ownable::Ownership;
use cw_tokenfactory_issuer::msg::{DenomUnit, QueryMsg as IssuerQueryMsg};
Expand All @@ -22,6 +17,12 @@ use osmosis_test_tube::{
RunnerError,
};

use crate::{
msg::{ExecuteMsg, InstantiateMsg, QueryMsg, TokenInfo},
tests::test_tube::test_env::TokenVotingContract,
ContractError,
};

use super::test_env::{TestEnv, TestEnvBuilder, DENOM};

#[test]
Expand Down

0 comments on commit b7247f4

Please sign in to comment.