1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-03-24 09:19:50 +01:00
This commit is contained in:
Roman Shvets 2013-07-16 13:45:43 +03:00 committed by Francois Zaninotto
parent 5d3ecd58e2
commit 4b4682ed78

View File

@ -25,7 +25,7 @@ class PaymentTest extends \PHPUnit_Framework_TestCase
{
$card = Payment::randomCard();
$this->assertEquals(count($card), 4);
$this->assertEquals(array('type','number','name','expirationDate'));
$this->assertEquals(array('type', 'number', 'name', 'expirationDate'), array_keys($card));
}