Relax tolerance on test_phase_order_surf_jacobian

This test was failing by a slim margin on ppc64le Linux builds
This commit is contained in:
Ray Speth 2023-08-16 16:39:40 -04:00 committed by Ingmar Schoegl
parent a26e2a5bca
commit 17ff66a494

View File

@ -1376,7 +1376,7 @@ class TestReactorJacobians(utilities.CanteraTest):
net.derivative_settings = {"skip-coverage-dependence":True}
net.initialize()
# check that they two arrays are the same
self.assertArrayNear(r1.jacobian, r2.jacobian, 1e-6, 1e-8)
self.assertArrayNear(r1.jacobian, r2.jacobian, 2e-6, 1e-8)
# A rate type used for testing integrator error handling
class FailRateData(ct.ExtensibleRateData):