Skip to content

Commit

Permalink
No extra consecutive blank lines
Browse files Browse the repository at this point in the history
  • Loading branch information
MathiasReker committed Dec 24, 2018
1 parent 33b71ca commit 7cae87a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/FilesystemAdapterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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');
Expand Down

0 comments on commit 7cae87a

Please sign in to comment.