From cd0d9907d42c1688cb67473436a0ba933d7bb270 Mon Sep 17 00:00:00 2001 From: Nils Vu Date: Tue, 20 Aug 2024 23:10:48 -0700 Subject: [PATCH] Loosen a tolerance This test failed on Intel macOS with OpenBLAS. --- tests/Unit/Evolution/DgSubcell/Test_Reconstruction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/Evolution/DgSubcell/Test_Reconstruction.cpp b/tests/Unit/Evolution/DgSubcell/Test_Reconstruction.cpp index 3bcb3ae7c6380..8b643ff1d7065 100644 --- a/tests/Unit/Evolution/DgSubcell/Test_Reconstruction.cpp +++ b/tests/Unit/Evolution/DgSubcell/Test_Reconstruction.cpp @@ -252,7 +252,7 @@ SPECTRE_TEST_CASE("Unit.Evolution.Subcell.Fd.Reconstruction", test_reconstruct_fd<6, 3, Spectral::Basis::Legendre, Spectral::Quadrature::GaussLobatto>( - {1.0e-14, 1.0e-14, 3.0e-6, 3.0e-7, 3.0e-8}, reconstruction_method); + {1.0e-14, 1.0e-12, 3.0e-6, 3.0e-7, 3.0e-8}, reconstruction_method); test_reconstruct_fd<6, 3, Spectral::Basis::Legendre, Spectral::Quadrature::Gauss>( {1.0e-14, 1.0e-14, 1.0e-6, 3.0e-7, 3.0e-8}, reconstruction_method);