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 44
55use InvalidArgumentException ;
66use PhpSchool \PhpWorkshop \Solution \DirectorySolution ;
7- use PhpSchool \PhpWorkshop \Utils \Path ;
87use PhpSchool \PhpWorkshop \Utils \System ;
98use PhpSchool \PhpWorkshopTest \BaseTest ;
109use Symfony \Component \Filesystem \Filesystem ;
@@ -13,7 +12,7 @@ class DirectorySolutionTest extends BaseTest
1312{
1413 public function tearDown (): void
1514 {
16- (new Filesystem ())->remove (Path:: join ( System::tempDir (), 'php-school ' ));
15+ (new Filesystem ())->remove (System::tempDir ('php-school ' ));
1716
1817 parent ::tearDown ();
1918 }
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class InTempSolutionMapperTest extends BaseTest
1414{
1515 public function tearDown (): void
1616 {
17- (new Filesystem ())->remove (Path:: join ( System::tempDir (), 'php-school ' ));
17+ (new Filesystem ())->remove (System::tempDir ('php-school ' ));
1818
1919 parent ::tearDown ();
2020 }
You can’t perform that action at this time.
0 commit comments