From a08c2a0b9fd01c280fd66b3083bd41315edf8abd Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Thu, 7 Jun 2012 11:07:09 +0200 Subject: [PATCH] Corrected altered error message in test --- tests/Composer/Test/DependencyResolver/SolverTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Composer/Test/DependencyResolver/SolverTest.php b/tests/Composer/Test/DependencyResolver/SolverTest.php index 0cec2b50a..df7f32cf4 100644 --- a/tests/Composer/Test/DependencyResolver/SolverTest.php +++ b/tests/Composer/Test/DependencyResolver/SolverTest.php @@ -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]); } }