Bläddra i källkod

Fix SocketStream.wait_writable_INET test

yhirose 1 månad sedan
förälder
incheckning
f6aec98145
1 ändrade filer med 1 tillägg och 4 borttagningar
  1. 1 4
      test/test.cc

+ 1 - 4
test/test.cc

@@ -4802,12 +4802,9 @@ TEST_F(ServerTest, HeaderCountSecurityTest) {
   if (res) {
     // If we get a response, it should be 400 Bad Request
     EXPECT_EQ(StatusCode::BadRequest_400, res->status);
-  } else {
-    // Request failed, which is the expected behavior for DoS protection
-    EXPECT_FALSE(res);
+    EXPECT_EQ("close", res->get_header_value("Connection"));
   }
 
-  EXPECT_EQ("close", res->get_header_value("Connection"));
   EXPECT_FALSE(cli_.is_socket_open());
 }