@@ -27,7 +27,7 @@ public function testFileMapping(): void
2727
2828 self ::assertFileExists ($ mappedFile );
2929 self ::assertNotSame ($ filePath , $ mappedFile );
30- self ::assertStringContainsString (System::tempDir (' php-school ' ), $ mappedFile );
30+ self ::assertStringContainsString (System::tempDir (), $ mappedFile );
3131 }
3232
3333 public function testDirectoryMapping (): void
@@ -42,7 +42,7 @@ public function testDirectoryMapping(): void
4242 self ::assertFileExists (Path::join ($ mappedDir , 'test.file ' ));
4343 self ::assertFileExists (Path::join ($ mappedDir , 'innerDir ' , 'test.file ' ));
4444 self ::assertNotSame ($ this ->getTemporaryDirectory (), $ mappedDir );
45- self ::assertStringContainsString (System::tempDir (' php-school ' ), $ mappedDir );
45+ self ::assertStringContainsString (System::tempDir (), $ mappedDir );
4646 }
4747
4848 public function testMappingIsDeterministicTempDir (): void
@@ -58,7 +58,7 @@ public function testMappingIsDeterministicTempDir(): void
5858
5959 self ::assertSame (
6060 InTempSolutionMapper::mapFile ($ filePath ),
61- Path::join (System::tempDir (), ' php-school ' , $ fileHash , 'test.file ' )
61+ Path::join (System::tempDir (), $ fileHash , 'test.file ' )
6262 );
6363
6464 self ::assertNotSame (
0 commit comments