Skip to content

Commit 7ef38c1

Browse files
committed
[Filesystem] Fix typo
1 parent 0f913fa commit 7ef38c1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Tests/FilesystemTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ public function testRemoveIgnoresNonExistingFiles()
299299

300300
public function testRemoveCleansInvalidLinks()
301301
{
302-
$this->markAsSkippeIfSymlinkIsMissing();
302+
$this->markAsSkippedIfSymlinkIsMissing();
303303

304304
$basePath = $this->workspace.DIRECTORY_SEPARATOR.'directory'.DIRECTORY_SEPARATOR;
305305

@@ -392,7 +392,7 @@ public function testRenameThrowsExceptionOnError()
392392

393393
public function testSymlink()
394394
{
395-
$this->markAsSkippeIfSymlinkIsMissing();
395+
$this->markAsSkippedIfSymlinkIsMissing();
396396

397397
$file = $this->workspace.DIRECTORY_SEPARATOR.'file';
398398
$link = $this->workspace.DIRECTORY_SEPARATOR.'link';
@@ -407,7 +407,7 @@ public function testSymlink()
407407

408408
public function testSymlinkIsOverwrittenIfPointsToDifferentTarget()
409409
{
410-
$this->markAsSkippeIfSymlinkIsMissing();
410+
$this->markAsSkippedIfSymlinkIsMissing();
411411

412412
$file = $this->workspace.DIRECTORY_SEPARATOR.'file';
413413
$link = $this->workspace.DIRECTORY_SEPARATOR.'link';
@@ -423,7 +423,7 @@ public function testSymlinkIsOverwrittenIfPointsToDifferentTarget()
423423

424424
public function testSymlinkIsNotOverwrittenIfAlreadyCreated()
425425
{
426-
$this->markAsSkippeIfSymlinkIsMissing();
426+
$this->markAsSkippedIfSymlinkIsMissing();
427427

428428
$file = $this->workspace.DIRECTORY_SEPARATOR.'file';
429429
$link = $this->workspace.DIRECTORY_SEPARATOR.'link';
@@ -490,7 +490,7 @@ public function testMirrorCopiesFilesAndDirectoriesRecursively()
490490

491491
public function testMirrorCopiesLinks()
492492
{
493-
$this->markAsSkippeIfSymlinkIsMissing();
493+
$this->markAsSkippedIfSymlinkIsMissing();
494494

495495
$sourcePath = $this->workspace.DIRECTORY_SEPARATOR.'source'.DIRECTORY_SEPARATOR;
496496

@@ -541,7 +541,7 @@ private function getFilePermisions($filePath)
541541
return (int) substr(sprintf('%o', fileperms($filePath)), -3);
542542
}
543543

544-
private function markAsSkippeIfSymlinkIsMissing()
544+
private function markAsSkippedIfSymlinkIsMissing()
545545
{
546546
if (!function_exists('symlink')) {
547547
$this->markTestSkipped('symlink is not supported');

0 commit comments

Comments
 (0)