From 75afc4d744c60d5309405a25d2858d4f1085b30a Mon Sep 17 00:00:00 2001 From: Jonah Miller Date: Mon, 18 Nov 2024 23:15:29 -0700 Subject: [PATCH] or not supported... --- test/test_bounds.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_bounds.cpp b/test/test_bounds.cpp index ece85eb382..0e35bb0fb8 100644 --- a/test/test_bounds.cpp +++ b/test/test_bounds.cpp @@ -79,8 +79,8 @@ SCENARIO("Logarithmic, single-grid bounds in the bounds object", "[Bounds]") { int ianchor; Spiner::weights_t 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))); } } }