Skip to content

Commit

Permalink
fix: uncomment test
Browse files Browse the repository at this point in the history
  • Loading branch information
mcharytoniuk committed Jan 15, 2024
1 parent cfd31fb commit 703404b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tests/Classifiers/OneVsRestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,13 +162,13 @@ public function trainPredictProba(Backend $backend) : void
$this->assertGreaterThanOrEqual(self::MIN_SCORE, $score);
}

// /**
// * @test
// */
// public function predictUntrained() : void
// {
// $this->expectException(RuntimeException::class);

// $this->estimator->predict(Unlabeled::quick());
// }
/**
* @test
*/
public function predictUntrained() : void
{
$this->expectException(RuntimeException::class);

$this->estimator->predict(Unlabeled::quick());
}
}

0 comments on commit 703404b

Please sign in to comment.