1
0
Fork 0

Clean up the incomplete marker like suggested in https://github.com/composer/composer/pull/324#r465391

pull/324/head
Volker Dusch 2012-02-19 15:38:03 +01:00
parent e20a79ac61
commit f304a0f129
1 changed files with 3 additions and 2 deletions

View File

@ -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
}