Skip to content

Commit

Permalink
useless error messages... and it works on my machine...
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahm-LANL committed Nov 18, 2024
1 parent ea15582 commit b384d2c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/test_bounds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ SCENARIO("Logarithmic, single-grid bounds in the bounds object", "[Bounds]") {
int ianchor;
Spiner::weights_t<Real> w;
lRhoBounds.grid.weights(lanchor, ianchor, w);
printf("%.14e, %.14e, %.14e\n",
std::abs(w[0] - 1), std::abs(w[1]), REAL_TOL);
REQUIRE(std::abs(w[0] - 1) <= REAL_TOL);
REQUIRE(std::abs(w[1]) <= REAL_TOL);
}
Expand Down

0 comments on commit b384d2c

Please sign in to comment.