From 8e315867af781403839e3d7cec8dca4f242e53d9 Mon Sep 17 00:00:00 2001 From: Max Chernopolsky Date: Thu, 28 Jul 2016 16:22:51 +0300 Subject: [PATCH] Fix phpunit tests fail on 64-bit systems #982 --- test/Faker/Calculator/LuhnTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/Faker/Calculator/LuhnTest.php b/test/Faker/Calculator/LuhnTest.php index c21701729d..7a5a18160f 100644 --- a/test/Faker/Calculator/LuhnTest.php +++ b/test/Faker/Calculator/LuhnTest.php @@ -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') ); }