Skip to content

Commit 940826c

Browse files
committed
[Filesystem] Fix dumpFile() method call
1 parent 3225cf0 commit 940826c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Tests/FilesystemTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1731,7 +1731,7 @@ public function testDumpKeepsExistingPermissionsWhenOverwritingAnExistingFile()
17311731
file_put_contents($filename, 'FOO BAR');
17321732
chmod($filename, 0745);
17331733

1734-
$this->filesystem->dumpFile($filename, 'bar', null);
1734+
$this->filesystem->dumpFile($filename, 'bar');
17351735

17361736
$this->assertFilePermissions(745, $filename);
17371737
}

0 commit comments

Comments
 (0)