adjust test and assertion to be more flexible

main
Rob Bast 9 years ago
parent baabc612f6
commit baa84d9be1

@ -37,7 +37,7 @@ Your requirements could not be resolved to an installable set of packages.
Problem 1 Problem 1
- Installation request for a ~1.0 -> satisfiable by a[1.0.0]. - Installation request for a ~1.0 -> satisfiable by a[1.0.0].
- a 1.0.0 requires php 5.5 -> your PHP version (5.6.17) overriden by "config.platform.php" version (5.3) does not satisfy that requirement. - a 1.0.0 requires php 5.5 -> your PHP version (%s) overriden by "config.platform.php" version (5.3) does not satisfy that requirement.
--EXPECT-- --EXPECT--

@ -252,7 +252,7 @@ class InstallerTest extends TestCase
$this->assertSame(rtrim($expect), implode("\n", $installationManager->getTrace())); $this->assertSame(rtrim($expect), implode("\n", $installationManager->getTrace()));
if ($expectOutput) { if ($expectOutput) {
$this->assertEquals(rtrim($expectOutput), rtrim($output)); $this->assertStringMatchesFormat(rtrim($expectOutput), rtrim($output));
} }
} }

Loading…
Cancel
Save