From ded82448aadde69631c42dbdc4c43dd9f7d0ae08 Mon Sep 17 00:00:00 2001 From: yhirose Date: Tue, 30 Dec 2025 17:34:52 -0500 Subject: [PATCH] clang-format --- test/test.cc | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/test/test.cc b/test/test.cc index f4eeded..2d2685d 100644 --- a/test/test.cc +++ b/test/test.cc @@ -11769,11 +11769,11 @@ TEST(ForwardedHeadersTest, HandlesWhitespaceAroundIPs) { svr.wait_until_ready(); std::string raw_req = - "GET /ip HTTP/1.1\r\n" - "Host: localhost\r\n" - "X-Forwarded-For: 198.51.100.23 , 203.0.113.66 , 192.0.2.45 \r\n" - "Connection: close\r\n" - "\r\n"; + "GET /ip HTTP/1.1\r\n" + "Host: localhost\r\n" + "X-Forwarded-For: 198.51.100.23 , 203.0.113.66 , 192.0.2.45 \r\n" + "Connection: close\r\n" + "\r\n"; std::string out; ASSERT_TRUE(send_request(5, raw_req, &out)); @@ -13158,12 +13158,11 @@ TEST(ETagTest, MalformedIfNoneMatchAndWhitespace) { EXPECT_EQ(200, res_bad->status); // Whitespace-only header value should be considered invalid / non-matching - std::string raw_req = - "GET /static/etag_malformed.txt HTTP/1.1\r\n" - "Host: localhost\r\n" - "If-None-Match: \r\n" - "Connection: close\r\n" - "\r\n"; + std::string raw_req = "GET /static/etag_malformed.txt HTTP/1.1\r\n" + "Host: localhost\r\n" + "If-None-Match: \r\n" + "Connection: close\r\n" + "\r\n"; std::string out; ASSERT_TRUE(send_request(5, raw_req, &out));