Skip to content

Commit 2b22937

Browse files
committed
Added Zip Adapters (PclZip & ZipArchive) (PHPUnit Fixes)
1 parent 6e81917 commit 2b22937

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/Common/Tests/Adapter/Zip/ZipArchiveAdapterTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ public function tearDown()
2222
{
2323
parent::tearDown();
2424

25-
unlink($this->zipTest);
25+
if (is_file($this->zipTest)) {
26+
unlink($this->zipTest);
27+
}
2628
}
2729

2830
public function testOpen()

0 commit comments

Comments
 (0)