From f304a0f129d9159080e73850530356025b389ed1 Mon Sep 17 00:00:00 2001 From: Volker Dusch Date: Sun, 19 Feb 2012 15:38:03 +0100 Subject: [PATCH] Clean up the incomplete marker like suggested in https://github.com/composer/composer/pull/324#r465391 --- tests/Composer/Test/DependencyResolver/SolverTest.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/Composer/Test/DependencyResolver/SolverTest.php b/tests/Composer/Test/DependencyResolver/SolverTest.php index 875dca41c..db7bfc1b6 100644 --- a/tests/Composer/Test/DependencyResolver/SolverTest.php +++ b/tests/Composer/Test/DependencyResolver/SolverTest.php @@ -57,6 +57,8 @@ class SolverTest extends TestCase public function testInstallNonExistingPackageFails() { + $this->markTestIncomplete('Reporting this failure is not implemented/working yet'); + $this->repo->addPackage($this->getPackage('A', '1.0')); $this->reposComplete(); @@ -64,8 +66,7 @@ class SolverTest extends TestCase try { $transaction = $this->solver->solve($this->request); - $this->markTestIncomplete('Reporting this failure is not implemented/working yet'); - //$this->fail('Unsolvable conflict did not resolve in exception.'); + $this->fail('Unsolvable conflict did not resolve in exception.'); } catch (SolverProblemsException $e) { // TODO assert problem properties }