Skip to content

Commit

Permalink
forgot ;. Brain is in swift land
Browse files Browse the repository at this point in the history
  • Loading branch information
sbSteveK committed Jan 31, 2025
1 parent 4c00349 commit ea4b9a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/channel_handler_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ static int s_test_channel_handler_msg_too_large_fails(struct aws_allocator *allo
test_data->user_data = &message_test_data;

/* message is 1 byte too large */
uint8_t empty_message[AWS_EVENT_STREAM_MAX_MESSAGE_SIZE + 1] = {0}
uint8_t empty_message[AWS_EVENT_STREAM_MAX_MESSAGE_SIZE + 1] = {0};

struct aws_byte_cursor empty_message_cursor = aws_byte_cursor_from_array(empty_message, sizeof(empty_message));
ASSERT_SUCCESS(testing_channel_push_read_data(&s_test_data.testing_channel, empty_message_cursor));
Expand Down

0 comments on commit ea4b9a8

Please sign in to comment.