Skip to content

Commit

Permalink
skip pclzip notice
Browse files Browse the repository at this point in the history
  • Loading branch information
liborm85 committed Oct 18, 2020
1 parent 170bde4 commit f528b1a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/Common/Tests/Adapter/Zip/AbstractZipAdapterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ public function testAddFromString()

$adapter = $this->createAdapter();
$adapter->open($this->zipTest);
$this->assertSame($adapter, $adapter->addFromString($expectedPath, $expectedContent));
// pclzip/pclzip library trow notice/warning in PHP 7.1+, issue: https://github.com/ivanlanin/pclzip/pull/8
@$this->assertSame($adapter, $adapter->addFromString($expectedPath, $expectedContent));
$adapter->close();

$this->assertTrue(TestHelperZip::assertFileExists($this->zipTest, $expectedPath));
Expand Down

0 comments on commit f528b1a

Please sign in to comment.