1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Corrected altered error message in test

This commit is contained in:
Nils Adermann 2012-06-07 11:07:09 +02:00
parent 5bea5974f7
commit a08c2a0b9f

View file

@ -77,7 +77,7 @@ class SolverTest extends TestCase
} catch (SolverProblemsException $e) {
$problems = $e->getProblems();
$this->assertEquals(1, count($problems));
$this->assertEquals('The requested package "b" with constraint == 1.0.0.0 could not be found.', (string) $problems[0]);
$this->assertEquals('The requested package b == 1.0.0.0 could not be found.', (string) $problems[0]);
}
}