Paweł Kukiełka 9 年 前
コミット
5bb6654b8d
1 ファイル変更3 行追加3 行削除
  1. 3 3
      tests/TestCase/Network/ResponseTest.php

+ 3 - 3
tests/TestCase/Network/ResponseTest.php

@@ -460,7 +460,7 @@ class ResponseTest extends TestCase
     {
         $response = new Response();
         $result = $response->httpCodes();
-        $this->assertEquals(42, count($result));
+        $this->assertEquals(43, count($result));
 
         $result = $response->httpCodes(100);
         $expected = [100 => 'Continue'];
@@ -473,7 +473,7 @@ class ResponseTest extends TestCase
 
         $result = $response->httpCodes($codes);
         $this->assertTrue($result);
-        $this->assertEquals(44, count($response->httpCodes()));
+        $this->assertEquals(45, count($response->httpCodes()));
 
         $result = $response->httpCodes(381);
         $expected = [381 => 'Unicorn Moved'];
@@ -482,7 +482,7 @@ class ResponseTest extends TestCase
         $codes = [404 => 'Sorry Bro'];
         $result = $response->httpCodes($codes);
         $this->assertTrue($result);
-        $this->assertEquals(44, count($response->httpCodes()));
+        $this->assertEquals(45, count($response->httpCodes()));
 
         $result = $response->httpCodes(404);
         $expected = [404 => 'Sorry Bro'];