Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix tests and add all tests to run-tests #1349

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions smoketest/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,23 @@ set -xe
cargo test --no-run

tests=(
# ERC20 Tests
register_token

send_token
send_token_to_penpal
transfer_token

# PNA Tests
register_polkadot_token
transfer_polkadot_token
send_polkadot_token

# System Pallet Tests
set_pricing_params
set_token_transfer_fees

create_agent
create_channel
transfer_native_from_agent

upgrade_gateway
)

Expand Down
2 changes: 1 addition & 1 deletion smoketest/tests/upgrade_gateway.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ use subxt::{
OnlineClient, PolkadotConfig,
};

const GATEWAY_V2_ADDRESS: [u8; 20] = hex!("f8f7758fbcefd546eaeff7de24aff666b6228e73");
const GATEWAY_V2_ADDRESS: [u8; 20] = hex!("ee9170abfbf9421ad6dd07f6bdec9d89f2b581e0");

#[tokio::test]
async fn upgrade_gateway() {
Expand Down
Loading