From 1942e53a5c1e9bfe213cda3b102bef4fd0460e33 Mon Sep 17 00:00:00 2001 From: Willem Wollebrants Date: Tue, 21 Feb 2017 21:12:27 +0100 Subject: [PATCH] Remove unneeded test testIntegerWithMaxValidation --- tests/Valitron/ValidateTest.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/Valitron/ValidateTest.php b/tests/Valitron/ValidateTest.php index 8ac6b2d..490424e 100644 --- a/tests/Valitron/ValidateTest.php +++ b/tests/Valitron/ValidateTest.php @@ -153,14 +153,6 @@ class ValidateTest extends BaseTestCase $this->assertFalse($v->validate()); } - public function testIntegerWithMaxValidation() - { - $v = new Validator(array('num' => ' 4212341569')); - $v->rule('integer', 'num', true); - $v->rule('max', 'num', 1000); - $this->assertFalse($v->validate()); - } - public function testLengthValid() { $v = new Validator(array('str' => 'happy'));