Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/4738' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/Response/ResponseStreamTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function testResponseFactoryFromStringCreatesValidResponse()
$this->assertEquals("Foo Bar\r\nBar Foo", $response->getBody());
}

public function testGzipResponse ()
public function testGzipResponse()
{
$stream = fopen(__DIR__ . '/../_files/response_gzip','rb');

Expand Down
6 changes: 3 additions & 3 deletions test/ResponseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function testResponseHasZeroLengthReasonPhrase()
$this->assertEquals('OK', $response->getReasonPhrase());
}

public function testGzipResponse ()
public function testGzipResponse()
{
$response_text = file_get_contents(__DIR__ . '/_files/response_gzip');

Expand All @@ -99,7 +99,7 @@ public function testGzipResponse ()
$this->assertEquals('f24dd075ba2ebfb3bf21270e3fdc5303', md5($res->getContent()));
}

public function testDeflateResponse ()
public function testDeflateResponse()
{
$response_text = file_get_contents(__DIR__ . '/_files/response_deflate');

Expand Down Expand Up @@ -131,7 +131,7 @@ public function testNonStandardDeflateResponseZF6040()
$this->assertEquals('c830dd74bb502443cf12514c185ff174', md5($res->getContent()));
}

public function testChunkedResponse ()
public function testChunkedResponse()
{
$response_text = file_get_contents(__DIR__ . '/_files/response_chunked');

Expand Down

0 comments on commit a401874

Please sign in to comment.