Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'remotes/zf2/master' into test/feed-entr…
Browse files Browse the repository at this point in the history
…y-type-detection
  • Loading branch information
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

7 changes: 6 additions & 1 deletion test/Writer/AbstractWriterTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,12 @@ protected function getTestAssetFileName()

public function tearDown()
{
@unlink($this->getTestAssetFileName());
if (file_exists($this->getTestAssetFileName())) {
if (!is_writable($this->getTestAssetFileName())) {
chmod($this->getTestAssetFileName(), 0777);
}
@unlink($this->getTestAssetFileName());
}
}

public function testNoFilenameSet()
Expand Down

0 comments on commit 62ca6c9

Please sign in to comment.