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

Fix phpunit tests fail on 64-bit systems #982 #983

Merged
merged 1 commit into from
Sep 7, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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