assertCount should be used instead

This commit is contained in:
Kleis Auke Wolthuizen
2017-11-21 17:50:28 +01:00
parent b15b4ecc51
commit c9d21466aa
5 changed files with 6 additions and 6 deletions

View File

@@ -19,6 +19,6 @@ class UserServiceKeyTest extends TestCase
$headers['X-Auth-User-Service-Key']
);
$this->assertEquals(1, count($headers));
$this->assertCount(1, $headers);
}
}