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

Commit

Permalink
Merge pull request #983 from Powerhead13/982-phpunit-luhn-fix
Browse files Browse the repository at this point in the history
Fix phpunit tests fail on 64-bit systems #982
  • Loading branch information
fzaninotto committed Sep 7, 2016
2 parents 9b66bf0 + 8e31586 commit 3d7e4e8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/Faker/Calculator/LuhnTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ public function checkDigitProvider()
array('510510510510510', '0'),
array(7992739871, '3'),
array(3852000002323, '7'),
array(37144963539843, '1'),
array(561059108101825, '0'),
array(601100099013942, '4'),
array(510510510510510, '0')
array('37144963539843', '1'),
array('561059108101825', '0'),
array('601100099013942', '4'),
array('510510510510510', '0')
);
}

Expand Down

0 comments on commit 3d7e4e8

Please sign in to comment.