Skip to content

Commit

Permalink
integration-tests: Drop fudge from router evm tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cdamian committed Aug 1, 2024
1 parent 4d9d1e4 commit 903161c
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions runtime/integration-tests/src/cases/routers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ use staging_xcm::v4::{Junction::*, Location};
use crate::{
config::Runtime,
env::Env,
envs::fudge_env::{handle::SIBLING_ID, FudgeEnv, FudgeSupport},
envs::{
fudge_env::{handle::SIBLING_ID, FudgeEnv, FudgeSupport},
runtime_env::RuntimeEnv,
},
utils::{
self,
accounts::Keyring,
Expand Down Expand Up @@ -62,8 +65,8 @@ fn xcm_router<T: Runtime>() -> XCMRouter<T> {
}
}

fn environment_for_evm<T: Runtime + FudgeSupport>() -> FudgeEnv<T> {
let mut env = FudgeEnv::<T>::from_parachain_storage(
fn environment_for_evm<T: Runtime>() -> RuntimeEnv<T> {
let mut env = RuntimeEnv::<T>::from_parachain_storage(
Genesis::default()
.add(genesis::balances::<T>(cfg(1_000)))
.storage(),
Expand Down Expand Up @@ -127,7 +130,7 @@ fn check_submission<T: Runtime>(mut env: impl Env<T>, domain_router: DomainRoute
}

#[test_runtimes(all)]
fn submit_by_axelar_evm<T: Runtime + FudgeSupport>() {
fn submit_by_axelar_evm<T: Runtime>() {
let router = DomainRouter::AxelarEVM(AxelarEVMRouter::<T> {
router: EVMRouter {
evm_domain: EVMDomain {
Expand Down

0 comments on commit 903161c

Please sign in to comment.