From a3e8711cb71fe909c1ae17450bfa5db652559c20 Mon Sep 17 00:00:00 2001 From: Aaron Piotrowski Date: Sun, 12 Jan 2025 14:02:49 -0600 Subject: [PATCH] Don't close server immediately in test --- test/Connection/Http2ConnectionTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/Connection/Http2ConnectionTest.php b/test/Connection/Http2ConnectionTest.php index 354c7062..5edfe6ba 100644 --- a/test/Connection/Http2ConnectionTest.php +++ b/test/Connection/Http2ConnectionTest.php @@ -602,8 +602,6 @@ public function testServerEarlyResponse(): void [":status", (string) HttpStatus::PAYLOAD_TOO_LARGE], ["date", formatDateHeader()], ]), Http2Parser::HEADERS, Http2Parser::END_HEADERS | Http2Parser::END_STREAM, 1)); - - $this->server->close(); }); $response = $responseFuture->await();