diff --git a/tests/Classifiers/OneVsRestTest.php b/tests/Classifiers/OneVsRestTest.php index f52b5066b..9b3353218 100644 --- a/tests/Classifiers/OneVsRestTest.php +++ b/tests/Classifiers/OneVsRestTest.php @@ -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()); + } }