Skip to content

Commit

Permalink
Merge branch '4.4' into 5.2
Browse files Browse the repository at this point in the history
* 4.4:
  [Filesystem] Fix dumpFile() method call
  • Loading branch information
wouterj committed Mar 28, 2021
2 parents 6ddb4f5 + 940826c commit 8c86a82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/FilesystemTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1741,7 +1741,7 @@ public function testDumpKeepsExistingPermissionsWhenOverwritingAnExistingFile()
file_put_contents($filename, 'FOO BAR');
chmod($filename, 0745);

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

$this->assertFilePermissions(745, $filename);
}
Expand Down

0 comments on commit 8c86a82

Please sign in to comment.