diff --git a/tests/Constraints/LongArraysTest.php b/tests/Constraints/LongArraysTest.php index 2757b964..c60fd3c7 100644 --- a/tests/Constraints/LongArraysTest.php +++ b/tests/Constraints/LongArraysTest.php @@ -100,11 +100,4 @@ public function testLongIntegerArray() $validator->check($checkValue, $schema); $this->assertTrue($validator->isValid(), print_r($validator->getErrors(), true)); } - - private static function millis() - { - $mt = explode(' ', microtime()); - - return $mt[1] * 1000 + round($mt[0] * 1000); - } }