Skip to content

Commit

Permalink
more integration-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ascjones committed Nov 16, 2023
1 parent 19b7d5c commit e5be01f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions integration-tests/multi-contract-caller/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ mod multi_contract_caller {
let value = client
.call(&ink_e2e::bob(), &get)
.dry_run()
.await
.await?
.return_value();
assert_eq!(value, 1234);
let change = call.change(6);
Expand All @@ -179,7 +179,7 @@ mod multi_contract_caller {
let value = client
.call(&ink_e2e::bob(), &get)
.dry_run()
.await
.await?
.return_value();
assert_eq!(value, 1234 + 6);

Expand All @@ -202,7 +202,7 @@ mod multi_contract_caller {
let value = client
.call(&ink_e2e::bob(), &get)
.dry_run()
.await
.await?
.return_value();
assert_eq!(value, 1234 + 6 - 3);

Expand Down
4 changes: 2 additions & 2 deletions integration-tests/trait-dyn-cross-contract-calls/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ mod e2e_tests {
let value = client
.call(&ink_e2e::alice(), &get)
.dry_run()
.await
.await?
.return_value();
assert_eq!(value, 0);

Expand All @@ -126,7 +126,7 @@ mod e2e_tests {
let value = client
.call(&ink_e2e::alice(), &get)
.dry_run()
.await
.await?
.return_value();
assert_eq!(value, 1);

Expand Down
2 changes: 1 addition & 1 deletion integration-tests/upgradeable-contracts/delegator/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ pub mod delegator {
let call_get_result = client
.call(&origin, &call_get)
.dry_run()
.await
.await?
.return_value();

// This fails
Expand Down

0 comments on commit e5be01f

Please sign in to comment.