From c5103db4775158bdb2b0bc792d3fdadee21881d8 Mon Sep 17 00:00:00 2001 From: MathiasReker Date: Mon, 24 Dec 2018 16:33:18 +0100 Subject: [PATCH] No extra consecutive blank lines --- tests/FilesystemAdapterTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/FilesystemAdapterTest.php b/tests/FilesystemAdapterTest.php index 8f15f98ba..e84c10c4e 100644 --- a/tests/FilesystemAdapterTest.php +++ b/tests/FilesystemAdapterTest.php @@ -125,7 +125,7 @@ public function testRandomFolderIsNotAPrestashopRelease() public function testTempFolderIsAPrestashopRelease() { // Create temp folder and fill it with the needed files - $folder = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'PSA' . rand(100, 2000); + $folder = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'PSA' . mt_rand(100, 2000); $this->fillFolderWithPsAssets($folder); $this->assertTrue( @@ -139,7 +139,7 @@ public function testTempFolderIsAPrestashopRelease() public function testTempFolderIsNotAPrestashopReleaseAfterChanges() { // Create temp folder and fill it with the needed files - $folder = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'PSA' . rand(100, 2000); + $folder = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'PSA' . mt_rand(100, 2000); $this->fillFolderWithPsAssets($folder); rmdir($folder . DIRECTORY_SEPARATOR . 'classes'); touch($folder . DIRECTORY_SEPARATOR . 'classes');