Skip to content

Commit

Permalink
Updating contract ids for e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Bellamy committed Dec 2, 2022
1 parent b6d57af commit f3ab828
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/it/e2e_rpc_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ fn e2e_deploy_and_invoke_contract_against_rpc_server() {
.arg(test_wasm("test_hello_world"))
.arg("--salt=0")
.assert()
.stdout("1f3eb7b8dc051d6aa46db5454588a142c671a0cdcdb36a2f754d9675a64bf613\n")
.stderr("success\n")
.stdout("b392cd0044315873f32307bfd535a9cbbb0402a57133ff7283afcae66be8174b\n")
.stderr("success\nsuccess\n")
.success();

Standalone::new_cmd()
.arg("invoke")
.arg("--id=1f3eb7b8dc051d6aa46db5454588a142c671a0cdcdb36a2f754d9675a64bf613")
.arg("--id=b392cd0044315873f32307bfd535a9cbbb0402a57133ff7283afcae66be8174b")
.arg("--fn=hello")
.arg("--arg=world")
.assert()
Expand All @@ -41,14 +41,14 @@ fn create_and_invoke_token_contract_against_rpc_server() {
"--salt=1",
])
.assert()
.stdout("8af3f0c5c2c4b5a3c6ac67b390f84d9db843b48827376f42e5bad215c42588f7\n")
.stdout("1bd2a2473623e73904d35a334476d1fe3cd192811bd823b7815fd9ce57c82232\n")
.stderr("success\nsuccess\n")
.success();

Standalone::new_cmd()
.args([
"invoke",
"--id=8af3f0c5c2c4b5a3c6ac67b390f84d9db843b48827376f42e5bad215c42588f7",
"--id=1bd2a2473623e73904d35a334476d1fe3cd192811bd823b7815fd9ce57c82232",
"--fn=symbol",
])
.assert()
Expand Down

0 comments on commit f3ab828

Please sign in to comment.