Allow running test suite with osx tar, fixes #5662
parent
8313e86877
commit
788f32ac93
|
@ -72,7 +72,7 @@ class XzDownloaderTest extends TestCase
|
||||||
$downloader->download($packageMock, $this->getUniqueTmpDirectory());
|
$downloader->download($packageMock, $this->getUniqueTmpDirectory());
|
||||||
$this->fail('Download of invalid tarball should throw an exception');
|
$this->fail('Download of invalid tarball should throw an exception');
|
||||||
} catch (\RuntimeException $e) {
|
} catch (\RuntimeException $e) {
|
||||||
$this->assertContains('File format not recognized', $e->getMessage());
|
$this->assertRegexp('/(File format not recognized|Unrecognized archive format)/i', $e->getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue