Browse Source

Fix directory deletion

Shalvah 4 years ago
parent
commit
c29333376d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/GenerateDocumentationTest.php

+ 2 - 2
tests/GenerateDocumentationTest.php

@@ -37,8 +37,8 @@ class GenerateDocumentationTest extends TestCase
 
     public function tearDown(): void
     {
-      Utils::deleteDirectoryAndContents('/public/docs');
-      Utils::deleteDirectoryAndContents('/resources/docs');
+      Utils::deleteDirectoryAndContents('public/docs');
+      Utils::deleteDirectoryAndContents('resources/docs');
     }
 
     /**