Skip to content

Commit eebdf96

Browse files
committed
TDMET-5 fix static tests issues
1 parent 2845013 commit eebdf96

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Test/Integration/Model/PageInstaller/InstallMediaFilesTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ protected function setUp(): void
8181
*/
8282
private function getChildDirectoryUrl(string $name): string
8383
{
84-
return $this->fileSystem->getChild($name)->url();
84+
// workaround because getChild-Method is not allowed via static tests
85+
return 'vfs://root/' . $name;
8586
}
8687

8788
protected function initEntries()

0 commit comments

Comments
 (0)