From 20dbfc9b983bd7c2897c45a8bc669461c158518d Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Thu, 25 Oct 2012 15:05:11 +0000 Subject: [PATCH] Modified test tolerances to fix a test failure on Windows --- interfaces/cython/cantera/test/test_reactor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interfaces/cython/cantera/test/test_reactor.py b/interfaces/cython/cantera/test/test_reactor.py index e589b080a..827c23d20 100644 --- a/interfaces/cython/cantera/test/test_reactor.py +++ b/interfaces/cython/cantera/test/test_reactor.py @@ -470,8 +470,8 @@ class TestFlowReactor(utilities.CanteraTest): net = ct.ReactorNet() net.addReactor(r) - net.atol = 1e-22 - net.rtol = 1e-8 + net.atol = 1e-16 + net.rtol = 1e-10 t = 0 self.assertNear(r.speed, 10 / r.density)