diff --git a/tests/src/Util/CryptoTest.php b/tests/src/Util/CryptoTest.php index f3047effa..76e3076f0 100644 --- a/tests/src/Util/CryptoTest.php +++ b/tests/src/Util/CryptoTest.php @@ -7,20 +7,6 @@ use PHPUnit\Framework\TestCase; class CryptoTest extends TestCase { - /** - * Replaces rand results with given mocks - * - */ - private function assertRand($min, $max) - { - global $phpMock; - $phpMock['rand'] = function($mMin, $mMax) use ($min, $max) { - $this->assertEquals($min, $mMin); - $this->assertEquals($max, $mMax); - return 1; - }; - } - /** * Replaces random_int results with given mocks *