Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
bretambrose committed Feb 19, 2024
1 parent 14560ad commit 612b3ec
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/secure_tunnel_tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,9 @@ int aws_websocket_client_connect_mock_fn(const struct aws_websocket_client_conne

void *pointer = test_fixture;
struct aws_websocket_on_connection_setup_data websocket_setup = {
.error_code = AWS_ERROR_SUCCESS, .websocket = pointer};
.error_code = AWS_ERROR_SUCCESS,
.websocket = pointer,
};

(test_fixture->websocket_function_table->on_connection_setup_fn)(&websocket_setup, secure_tunnel);
secure_tunnel->websocket = pointer;
Expand Down Expand Up @@ -1007,7 +1009,9 @@ int aws_websocket_client_connect_fail_once_fn(const struct aws_websocket_client_

void *pointer = test_fixture;
struct aws_websocket_on_connection_setup_data websocket_setup = {
.error_code = AWS_ERROR_SUCCESS, .websocket = pointer};
.error_code = AWS_ERROR_SUCCESS,
.websocket = pointer,
};

(test_fixture->websocket_function_table->on_connection_setup_fn)(&websocket_setup, secure_tunnel);

Expand Down

0 comments on commit 612b3ec

Please sign in to comment.