Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yito88 committed May 28, 2024
1 parent 18abd42 commit bb01bd8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/integration-test/src/tests/sequence_filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ impl TestOverrides for FilterClearOnStartTest {
excluded_sequences.insert(ChannelId::new(2), vec![2.into()]);
let chain_a = &mut config.chains[0];
match chain_a {
ChainConfig::CosmosSdk(chain_config) => {
ChainConfig::CosmosSdk(chain_config) | ChainConfig::Namada(chain_config) => {
chain_config.excluded_sequences = excluded_sequences;
}
}
Expand Down Expand Up @@ -88,7 +88,7 @@ impl TestOverrides for FilterClearIntervalTest {
excluded_sequences.insert(ChannelId::new(2), vec![2.into()]);
let chain_a = &mut config.chains[0];
match chain_a {
ChainConfig::CosmosSdk(chain_config) => {
ChainConfig::CosmosSdk(chain_config) | ChainConfig::Namada(chain_config) => {
chain_config.excluded_sequences = excluded_sequences;
}
}
Expand Down Expand Up @@ -247,7 +247,7 @@ impl TestOverrides for StandardRelayingNoFilterTest {
excluded_sequences.insert(ChannelId::new(2), vec![2.into()]);
let chain_a = &mut config.chains[0];
match chain_a {
ChainConfig::CosmosSdk(chain_config) => {
ChainConfig::CosmosSdk(chain_config) | ChainConfig::Namada(chain_config) => {
chain_config.excluded_sequences = excluded_sequences;
}
}
Expand Down

0 comments on commit bb01bd8

Please sign in to comment.