Skip to content

Commit 4066796

Browse files
committed
fix regression
1 parent b90aca0 commit 4066796

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/source/corr_fn_ell.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ TEST_CASE("mle_corr_fn") {
3838
const auto [coeffs, num_iters] = mle_corr_poly(Y, site, 4);
3939
REQUIRE(coeffs.size() > 0);
4040
CHECK(coeffs[0] >= 0.0);
41-
CHECK(num_iters >= 149);
42-
CHECK(num_iters <= 248);
41+
CHECK(num_iters >= 380);
42+
CHECK(num_iters <= 407);
4343
}

0 commit comments

Comments
 (0)