From 175d1939b5f3d5f08a9ca43ad6a0f904a0990a5a Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 4 Jul 2012 14:28:15 +0200 Subject: [PATCH] Fix tests --- 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 43b1c54ee..fa88726c1 100644 --- a/tests/Composer/Test/DependencyResolver/SolverTest.php +++ b/tests/Composer/Test/DependencyResolver/SolverTest.php @@ -74,7 +74,7 @@ class SolverTest extends TestCase } catch (SolverProblemsException $e) { $problems = $e->getProblems(); $this->assertEquals(1, count($problems)); - $this->assertEquals('The requested package b == 1 could not be found.', $problems[0]->getPrettyString()); + $this->assertEquals("\n - The requested package b == 1 could not be found.", $problems[0]->getPrettyString()); } }