1
0
Fork 0

Corrected altered error message in test

pull/779/head
Nils Adermann 2012-06-07 11:07:09 +02:00
parent 5bea5974f7
commit a08c2a0b9f
1 changed files with 1 additions and 1 deletions

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]);
}
}