Skip to content

Commit

Permalink
[Filesystem] Fix dumpFile() method call
Browse files Browse the repository at this point in the history
  • Loading branch information
sebpacz committed Mar 28, 2021
1 parent 3225cf0 commit 940826c
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 @@ -1731,7 +1731,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 940826c

Please sign in to comment.