Fixes snowbridge integration test#3570
Fixes snowbridge integration test#3570bkontur merged 5 commits intoparitytech:bko-penpal-customizationfrom
Conversation
| rococo-westend-system-emulated-network = { path = "../../../networks/rococo-westend-system" } | ||
| rococo-system-emulated-network = { path = "../../../networks/rococo-system" } | ||
| asset-hub-rococo-runtime = { path = "../../../../../runtimes/assets/asset-hub-rococo", default-features = false } | ||
| penpal-runtime = { path = "../../../../../runtimes/testing/penpal", default-features = false } |
There was a problem hiding this comment.
@claravanstaden I would remove this dep here, and just re-export CustomizableAssetFromSystemAssetHub here: https://github.com/paritytech/polkadot-sdk/blob/master/cumulus/parachains/integration-tests/emulated/chains/parachains/testing/penpal/src/lib.rs#L18-L20
| ]); | ||
|
|
||
| PenpalA::execute_with(|| { | ||
| <PenpalA as Chain>::System::set_storage( |
There was a problem hiding this comment.
@claravanstaden remove unwrap and use assert_ok!( instead please
|
The CI pipeline was cancelled due to failure one of the required jobs. |
| rococo-westend-system-emulated-network = { path = "../../../networks/rococo-westend-system" } | ||
| rococo-system-emulated-network = { path = "../../../networks/rococo-system" } | ||
| asset-hub-rococo-runtime = { path = "../../../../../runtimes/assets/asset-hub-rococo", default-features = false } | ||
| penpal-emulated-chain = { path = "../../../chains/parachains/testing/penpal", default-features = false } |
There was a problem hiding this comment.
@claravanstaden I think no need to add this deps here, because it can be reached from rococo-system-emulated-network, I will try it in my branch
Fixes the snowbridge test by using the new Penpal config.