Skip to content

Commit

Permalink
Update var name
Browse files Browse the repository at this point in the history
  • Loading branch information
deuszex authored Feb 8, 2024
1 parent 1b1bf17 commit b4c544a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/src/migration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fn should_upgrade_contract_version() {
.into_t()
.unwrap();

let install_request_1 = ExecuteRequestBuilder::standard(
let upgrade_request = ExecuteRequestBuilder::standard(
*DEFAULT_ACCOUNT_ADDR,
CEP18_CONTRACT_WASM,
runtime_args! {
Expand All @@ -38,7 +38,7 @@ fn should_upgrade_contract_version() {
)
.build();

builder.exec(install_request_1).expect_success().commit();
builder.exec(upgrade_request).expect_success().commit();

let version_1: u32 = builder
.query(
Expand Down

0 comments on commit b4c544a

Please sign in to comment.