@@ -5226,7 +5226,8 @@ H1_CLIENT_TEST_CASE(h1_client_write_data_single_chunk) {
52265226 ASSERT_INT_EQUALS (1 , callback_tester .num_callbacks );
52275227 ASSERT_INT_EQUALS (AWS_ERROR_SUCCESS , callback_tester .last_error_code );
52285228
5229- ASSERT_SUCCESS (testing_channel_push_read_str (& fixture .tester .testing_channel , "HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n" ));
5229+ ASSERT_SUCCESS (
5230+ testing_channel_push_read_str (& fixture .tester .testing_channel , "HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n" ));
52305231 testing_channel_drain_queued_tasks (& fixture .tester .testing_channel );
52315232
52325233 ASSERT_TRUE (fixture .stream_tester .complete );
@@ -5285,7 +5286,8 @@ H1_CLIENT_TEST_CASE(h1_client_write_data_multiple_chunks) {
52855286 ASSERT_INT_EQUALS (1 , callback_tester2 .num_callbacks );
52865287 ASSERT_INT_EQUALS (AWS_ERROR_SUCCESS , callback_tester2 .last_error_code );
52875288
5288- ASSERT_SUCCESS (testing_channel_push_read_str (& fixture .tester .testing_channel , "HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n" ));
5289+ ASSERT_SUCCESS (
5290+ testing_channel_push_read_str (& fixture .tester .testing_channel , "HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n" ));
52895291 testing_channel_drain_queued_tasks (& fixture .tester .testing_channel );
52905292
52915293 ASSERT_TRUE (fixture .stream_tester .complete );
@@ -5455,7 +5457,8 @@ H1_CLIENT_TEST_CASE(h1_client_write_data_chunked_single) {
54555457 ASSERT_INT_EQUALS (1 , callback_tester .num_callbacks );
54565458 ASSERT_INT_EQUALS (AWS_ERROR_SUCCESS , callback_tester .last_error_code );
54575459
5458- ASSERT_SUCCESS (testing_channel_push_read_str (& fixture .tester .testing_channel , "HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n" ));
5460+ ASSERT_SUCCESS (
5461+ testing_channel_push_read_str (& fixture .tester .testing_channel , "HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n" ));
54595462 testing_channel_drain_queued_tasks (& fixture .tester .testing_channel );
54605463
54615464 ASSERT_TRUE (fixture .stream_tester .complete );
@@ -5587,7 +5590,8 @@ H1_CLIENT_TEST_CASE(h1_client_write_data_null_data_content_length) {
55875590 ASSERT_INT_EQUALS (3 , callback_tester .num_callbacks );
55885591 ASSERT_INT_EQUALS (AWS_ERROR_SUCCESS , callback_tester .last_error_code );
55895592
5590- ASSERT_SUCCESS (testing_channel_push_read_str (& fixture .tester .testing_channel , "HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n" ));
5593+ ASSERT_SUCCESS (
5594+ testing_channel_push_read_str (& fixture .tester .testing_channel , "HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n" ));
55915595 testing_channel_drain_queued_tasks (& fixture .tester .testing_channel );
55925596
55935597 ASSERT_TRUE (fixture .stream_tester .complete );
@@ -5629,7 +5633,8 @@ H1_CLIENT_TEST_CASE(h1_client_write_data_null_data_chunked) {
56295633 ASSERT_INT_EQUALS (1 , callback_tester .num_callbacks );
56305634 ASSERT_INT_EQUALS (AWS_ERROR_SUCCESS , callback_tester .last_error_code );
56315635
5632- ASSERT_SUCCESS (testing_channel_push_read_str (& fixture .tester .testing_channel , "HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n" ));
5636+ ASSERT_SUCCESS (
5637+ testing_channel_push_read_str (& fixture .tester .testing_channel , "HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n" ));
56335638 testing_channel_drain_queued_tasks (& fixture .tester .testing_channel );
56345639
56355640 ASSERT_TRUE (fixture .stream_tester .complete );
0 commit comments