File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 4
4
5
5
use InvalidArgumentException ;
6
6
use PhpSchool \PhpWorkshop \Solution \DirectorySolution ;
7
- use PhpSchool \PhpWorkshop \Utils \Path ;
8
7
use PhpSchool \PhpWorkshop \Utils \System ;
9
8
use PhpSchool \PhpWorkshopTest \BaseTest ;
10
9
use Symfony \Component \Filesystem \Filesystem ;
@@ -13,7 +12,7 @@ class DirectorySolutionTest extends BaseTest
13
12
{
14
13
public function tearDown (): void
15
14
{
16
- (new Filesystem ())->remove (Path:: join ( System::tempDir (), 'php-school ' ));
15
+ (new Filesystem ())->remove (System::tempDir ('php-school ' ));
17
16
18
17
parent ::tearDown ();
19
18
}
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class InTempSolutionMapperTest extends BaseTest
14
14
{
15
15
public function tearDown (): void
16
16
{
17
- (new Filesystem ())->remove (Path:: join ( System::tempDir (), 'php-school ' ));
17
+ (new Filesystem ())->remove (System::tempDir ('php-school ' ));
18
18
19
19
parent ::tearDown ();
20
20
}
You can’t perform that action at this time.
0 commit comments