From 19f57958f034efe5c43cbd525a2f42afef0f4823 Mon Sep 17 00:00:00 2001 From: DmitriyMusatkin Date: Mon, 11 Nov 2024 16:07:12 -0800 Subject: [PATCH] lint --- tests/xml_parser_test.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/xml_parser_test.c b/tests/xml_parser_test.c index ac890f224..09153f111 100644 --- a/tests/xml_parser_test.c +++ b/tests/xml_parser_test.c @@ -165,9 +165,8 @@ static int s_xml_parser_siblings_with_text_test(struct aws_allocator *allocator, AWS_TEST_CASE(xml_parser_siblings_with_text, s_xml_parser_siblings_with_text_test) -const char *siblings_with_empty_tag = - "TestBody2"; +const char *siblings_with_empty_tag = "TestBody2"; static int s_xml_parser_child_empty_tag(struct aws_allocator *allocator, void *ctx) { (void)ctx; @@ -186,7 +185,8 @@ static int s_xml_parser_child_empty_tag(struct aws_allocator *allocator, void *c const char expected_name2[] = "child2"; const char expected_value2[] = "TestBody2"; - ASSERT_BIN_ARRAYS_EQUALS(expected_name1, sizeof(expected_name1) - 1, capture.node_name1.ptr, capture.node_name1.len); + ASSERT_BIN_ARRAYS_EQUALS( + expected_name1, sizeof(expected_name1) - 1, capture.node_name1.ptr, capture.node_name1.len); ASSERT_PTR_EQUALS(capture.capture1.ptr, NULL); ASSERT_UINT_EQUALS(capture.capture1.len, 0);