diff --git a/Tests/FilesystemTest.php b/Tests/FilesystemTest.php index 6f4f78e31..0042678e6 100644 --- a/Tests/FilesystemTest.php +++ b/Tests/FilesystemTest.php @@ -409,7 +409,7 @@ public function testFilesExistsFails() chdir($basePath); $file = str_repeat('T', $maxPathLength - \strlen($basePath) + 1); $path = $basePath.$file; - exec('TYPE NUL >>'.$file); // equivalent of touch, we can not use the php touch() here because it suffers from the same limitation + exec('TYPE NUL >>'.$file); // equivalent of touch, we cannot use the php touch() here because it suffers from the same limitation $this->longPathNamesWindows[] = $path; // save this so we can clean up later chdir($oldPath); $this->filesystem->exists($path);