Skip to content

Commit

Permalink
fix multihop in localic tests (#315)
Browse files Browse the repository at this point in the history
  • Loading branch information
keyleu authored Jul 29, 2024
1 parent 5da8254 commit cae4934
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 @@ -142,13 +142,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 @@ -121,13 +121,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 @@ -136,13 +136,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 cae4934

Please sign in to comment.