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

Commit a401874

Browse files
committed
Merge branch 'hotfix/4738' into develop
Forward port zendframework/zendframework#4738

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/Response/ResponseStreamTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function testResponseFactoryFromStringCreatesValidResponse()
2727
$this->assertEquals("Foo Bar\r\nBar Foo", $response->getBody());
2828
}
2929

30-
public function testGzipResponse ()
30+
public function testGzipResponse()
3131
{
3232
$stream = fopen(__DIR__ . '/../_files/response_gzip','rb');
3333

test/ResponseTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function testResponseHasZeroLengthReasonPhrase()
8888
$this->assertEquals('OK', $response->getReasonPhrase());
8989
}
9090

91-
public function testGzipResponse ()
91+
public function testGzipResponse()
9292
{
9393
$response_text = file_get_contents(__DIR__ . '/_files/response_gzip');
9494

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

102-
public function testDeflateResponse ()
102+
public function testDeflateResponse()
103103
{
104104
$response_text = file_get_contents(__DIR__ . '/_files/response_deflate');
105105

@@ -131,7 +131,7 @@ public function testNonStandardDeflateResponseZF6040()
131131
$this->assertEquals('c830dd74bb502443cf12514c185ff174', md5($res->getContent()));
132132
}
133133

134-
public function testChunkedResponse ()
134+
public function testChunkedResponse()
135135
{
136136
$response_text = file_get_contents(__DIR__ . '/_files/response_chunked');
137137

0 commit comments

Comments
 (0)