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

Commit

Permalink
Fix phpunit tests fail on 64-bit systems #982
Browse files Browse the repository at this point in the history
  • Loading branch information
Powerhead13 committed Jul 28, 2016
1 parent 5265f16 commit 8e31586
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 8e31586

Please sign in to comment.