From da1aafcf17df866700b331f1afc445d5a1b97408 Mon Sep 17 00:00:00 2001
From: Jason Kaye <jkaye@flatironinstitute.org>
Date: Thu, 19 Sep 2024 15:44:41 -0400
Subject: [PATCH] increased test tol

---
 test/c++/imfreq_ops.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/c++/imfreq_ops.cpp b/test/c++/imfreq_ops.cpp
index 8fbfc8a..d1617de 100644
--- a/test/c++/imfreq_ops.cpp
+++ b/test/c++/imfreq_ops.cpp
@@ -281,7 +281,7 @@ TEST(imfreq_ops, interp_matrix_sym_fer) {
   auto gc = ifops.vals2coefs(beta, g);
 
   // Check that G can be recovered at imaginary frequency nodes
-  EXPECT_LT(max_element(abs(ifops.coefs2vals(beta, gc) - g)), 2e-13);
+  EXPECT_LT(max_element(abs(ifops.coefs2vals(beta, gc) - g)), 3e-13);
 
   // Compute error in imaginary frequency
   auto gtru      = nda::matrix<dcomplex>(norb, norb);