Преглед на файлове

Corrected altered error message in test

Nils Adermann преди 12 години
родител
ревизия
a08c2a0b9f
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      tests/Composer/Test/DependencyResolver/SolverTest.php

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