Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fmt
  • Loading branch information
pmikolajczyk41 committed Aug 3, 2023
commit b13770553ea0632b8bc643503758902ab3d77da4
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,9 @@ mod call_builder {
}

#[ink_e2e::test]
async fn e2e_create_builder_with_infallible_revert_constructor_encodes_ok<Client: E2EBackend>(
async fn e2e_create_builder_with_infallible_revert_constructor_encodes_ok<
Client: E2EBackend,
>(
mut client: Client,
) -> E2EResult<()> {
let origin = client
Expand Down Expand Up @@ -384,7 +386,9 @@ mod call_builder {
}

#[ink_e2e::test]
async fn e2e_create_builder_can_handle_fallible_constructor_success<Client: E2EBackend>(
async fn e2e_create_builder_can_handle_fallible_constructor_success<
Client: E2EBackend,
>(
mut client: Client,
) -> E2EResult<()> {
let origin = client
Expand Down Expand Up @@ -423,7 +427,9 @@ mod call_builder {
}

#[ink_e2e::test]
async fn e2e_create_builder_can_handle_fallible_constructor_error<Client: E2EBackend>(
async fn e2e_create_builder_can_handle_fallible_constructor_error<
Client: E2EBackend,
>(
mut client: Client,
) -> E2EResult<()> {
let origin = client
Expand Down Expand Up @@ -469,7 +475,9 @@ mod call_builder {
}

#[ink_e2e::test]
async fn e2e_create_builder_with_fallible_revert_constructor_encodes_ok<Client: E2EBackend>(
async fn e2e_create_builder_with_fallible_revert_constructor_encodes_ok<
Client: E2EBackend,
>(
mut client: Client,
) -> E2EResult<()> {
let origin = client
Expand Down Expand Up @@ -512,7 +520,9 @@ mod call_builder {
}

#[ink_e2e::test]
async fn e2e_create_builder_with_fallible_revert_constructor_encodes_err<Client: E2EBackend>(
async fn e2e_create_builder_with_fallible_revert_constructor_encodes_err<
Client: E2EBackend,
>(
mut client: Client,
) -> E2EResult<()> {
let origin = client
Expand Down