Skip to content

Commit

Permalink
Remove no longer working testHttp2Push
Browse files Browse the repository at this point in the history
  • Loading branch information
kelunik committed Mar 21, 2024
1 parent 89d7f5d commit 2b73a85
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions test/ClientHttpBinIntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -237,17 +237,6 @@ public function testHeaderCase(): \Generator
], $result);
}

public function testHttp2Push(): \Generator
{
$request = new Request('https://http2-server-push-demo.keksi.io/');
$request->setPushHandler(static function (Request $request, Promise $response) {
self::assertSame('/image.jpg', $request->getUri()->getPath());
self::assertSame('image/jpeg', (yield $response)->getHeader('content-type'));
});

yield $this->executeRequest($request);
}

public function testGzipBomb(): \Generator
{
$this->markTestSkipped('Run this manually');
Expand Down

0 comments on commit 2b73a85

Please sign in to comment.