From cb1ecb12e642fc5a8f944ebf079c3bff539b5ca2 Mon Sep 17 00:00:00 2001 From: notona Date: Mon, 20 Feb 2017 12:32:37 +0900 Subject: [PATCH] fix for test codes --- tests/Valitron/ValidateTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Valitron/ValidateTest.php b/tests/Valitron/ValidateTest.php index ee3b34f..e5fe053 100644 --- a/tests/Valitron/ValidateTest.php +++ b/tests/Valitron/ValidateTest.php @@ -141,7 +141,7 @@ class ValidateTest extends BaseTestCase public function testIntegerWithMaxValidation() { - $v = new Validator(array('num' => '4212341569')); + $v = new Validator(array('num' => ' 4212341569')); $v->rule('integer', 'num'); $v->rule('max', 'num', 1000); $this->assertFalse($v->validate());