We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da60498 commit 12f4439Copy full SHA for 12f4439
1 file changed
tests/TarTestCase.php
@@ -686,9 +686,7 @@ public function testCloseHasBeenClosed()
686
$this->assertNull($tar->close());
687
}
688
689
- /**
690
- * @depends testExtBz2IsInstalled
691
- */
+
692
public function testGetArchiveWithBzipCompress()
693
{
694
$dir = dirname(__FILE__) . '/tar';
@@ -698,7 +696,7 @@ public function testGetArchiveWithBzipCompress()
698
696
$tar->addFile("$dir/zero.txt", 'zero.txt');
699
697
$file = $tar->getArchive();
700
701
- $this->assertEquals(102, strlen($file)); // 1 header block + 2 footer blocks
+ $this->assertGreaterThanOrEqual(102, strlen($file)); // 1 header block + 2 footer blocks
702
703
704
public function testSaveWithCompressionAuto()
0 commit comments