diff --git a/crates/aptos/e2e/cases/account.py b/crates/aptos/e2e/cases/account.py index 083d86038ff0f..b6db5262ae40b 100644 --- a/crates/aptos/e2e/cases/account.py +++ b/crates/aptos/e2e/cases/account.py @@ -149,7 +149,8 @@ def test_account_rotate_key(run_helper: RunHelper, test_name=None): raise TestError( f"lookup-address of new public key does not match original address: {old_profile.account_address}" ) - + + @test_case def test_account_resource_account(run_helper: RunHelper, test_name=None): # Seed for the resource account @@ -220,4 +221,4 @@ def test_account_resource_account(run_helper: RunHelper, test_name=None): if not found_resource: raise TestError( "Cannot find the resource account in the account list after resource account creation" - ) \ No newline at end of file + ) diff --git a/crates/aptos/e2e/main.py b/crates/aptos/e2e/main.py index 2403249fb48d2..e9109ef681576 100644 --- a/crates/aptos/e2e/main.py +++ b/crates/aptos/e2e/main.py @@ -33,8 +33,8 @@ test_account_create, test_account_fund_with_faucet, test_account_lookup_address, - test_account_rotate_key, test_account_resource_account, + test_account_rotate_key, ) from cases.config import test_config_show_profiles from cases.init import test_aptos_header_included, test_init, test_metrics_accessible