Adjust threshold to improve test stability.

This commit is contained in:
Marcus Edel
2021-10-23 15:24:25 -04:00
parent 2a2938b27a
commit fd10d8cbfa
@@ -931,7 +931,7 @@ TEST_CASE("CategoricalMADGainWeightedBuildTest", "[DecisionTreeRegressorTest]")
// Make sure we get reasonable rmse.
const double rmse = RMSE(predictions, testResponses);
REQUIRE(rmse < 1.0);
REQUIRE(rmse < 1.05);
}
/**