Skip to content

Commit

Permalink
or not supported...
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahm-LANL committed Nov 19, 2024
1 parent 8889f77 commit 75afc4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_bounds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +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);
REQUIRE((std::abs(w[0] - 1) <= REAL_TOL) || (std::abs(w[0]) <= REAL_TOL));
REQUIRE((std::abs(w[1] - 1) <= REAL_TOL) || (std::abs(w[1]) <= REAL_TOL));
REQUIRE(((std::abs(w[0] - 1) <= REAL_TOL) || (std::abs(w[0]) <= REAL_TOL)));
REQUIRE(((std::abs(w[1] - 1) <= REAL_TOL) || (std::abs(w[1]) <= REAL_TOL)));
}
}
}
Expand Down

0 comments on commit 75afc4d

Please sign in to comment.