Browse Source

this tests is not checking what it should

antograssiot 10 years ago
parent
commit
435edae309
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Network/Http/ClientTest.php

+ 1 - 1
tests/TestCase/Network/Http/ClientTest.php

@@ -52,7 +52,7 @@ class ClientTest extends TestCase
             'host' => 'example.org',
             'auth' => ['username' => 'mark', 'password' => 'secret']
         ];
-        foreach ($config as $key => $val) {
+        foreach ($expected as $key => $val) {
             $this->assertEquals($val, $result[$key]);
         }
     }