Skip to content

Commit 8c86a82

Browse files
committed
Merge branch '4.4' into 5.2
* 4.4: [Filesystem] Fix dumpFile() method call
2 parents 6ddb4f5 + 940826c commit 8c86a82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/FilesystemTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1741,7 +1741,7 @@ public function testDumpKeepsExistingPermissionsWhenOverwritingAnExistingFile()
17411741
file_put_contents($filename, 'FOO BAR');
17421742
chmod($filename, 0745);
17431743

1744-
$this->filesystem->dumpFile($filename, 'bar', null);
1744+
$this->filesystem->dumpFile($filename, 'bar');
17451745

17461746
$this->assertFilePermissions(745, $filename);
17471747
}

0 commit comments

Comments
 (0)