Skip to content

Commit

Permalink
Fix multihop in tests (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
keyleu authored Jul 29, 2024
1 parent 97defd9 commit 6f5b888
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,13 +144,13 @@ pub fn test_single_party_pol_stride(test_ctx: &mut TestContext) -> Result<(), Lo
vec![
&test_ctx
.get_transfer_channels()
.src(NEUTRON_CHAIN_NAME)
.dest(GAIA_CHAIN_NAME)
.src(GAIA_CHAIN_NAME)
.dest(NEUTRON_CHAIN_NAME)
.get(),
&test_ctx
.get_transfer_channels()
.src(STRIDE_CHAIN_NAME)
.dest(NEUTRON_CHAIN_NAME)
.src(NEUTRON_CHAIN_NAME)
.dest(STRIDE_CHAIN_NAME)
.get(),
],
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@ pub fn test_two_party_pol(test_ctx: &mut TestContext) -> Result<(), LocalError>
vec![
&test_ctx
.get_transfer_channels()
.src(NEUTRON_CHAIN_NAME)
.dest(OSMOSIS_CHAIN_NAME)
.src(OSMOSIS_CHAIN_NAME)
.dest(NEUTRON_CHAIN_NAME)
.get(),
&test_ctx
.get_transfer_channels()
.src(GAIA_CHAIN_NAME)
.dest(NEUTRON_CHAIN_NAME)
.src(NEUTRON_CHAIN_NAME)
.dest(GAIA_CHAIN_NAME)
.get(),
],
);
Expand All @@ -135,13 +135,13 @@ pub fn test_two_party_pol(test_ctx: &mut TestContext) -> Result<(), LocalError>
vec![
&test_ctx
.get_transfer_channels()
.src(NEUTRON_CHAIN_NAME)
.dest(GAIA_CHAIN_NAME)
.src(GAIA_CHAIN_NAME)
.dest(NEUTRON_CHAIN_NAME)
.get(),
&test_ctx
.get_transfer_channels()
.src(OSMOSIS_CHAIN_NAME)
.dest(NEUTRON_CHAIN_NAME)
.src(NEUTRON_CHAIN_NAME)
.dest(OSMOSIS_CHAIN_NAME)
.get(),
],
);
Expand Down

0 comments on commit 6f5b888

Please sign in to comment.