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

Commit

Permalink
Merge pull request zendframework/zendframework#836 from Maks3w/hotfix…
Browse files Browse the repository at this point in the history
…/ZF2-176

[ZF2-176] Replace all assertType assertions.
  • Loading branch information
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/ResponseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function testResponseCanRenderStatusLine()
$response->setReasonPhrase('Foo Bar');
$this->assertEquals('HTTP/1.1 404 Foo Bar', $response->renderStatusLine());
}

public function testResponseUsesHeadersContainerByDefault()
{
$response = new Response();
Expand Down Expand Up @@ -270,7 +270,7 @@ public function testResponseSetStatusCodeThrowsExceptionOnInvalidCode()
//
// // Check we get an array if no code is passed
// $codes = Response::responseCodeAsText();
// $this->assertType('array', $codes);
// $this->assertInternalType('array', $codes);
// $this->assertEquals('OK', $codes[200]);
// }
//
Expand Down

0 comments on commit 00c4ac3

Please sign in to comment.