Modified test tolerances to fix a test failure on Windows

This commit is contained in:
Ray Speth 2012-10-25 15:05:11 +00:00
parent 8c3cd5f3c8
commit 20dbfc9b98

View file

@ -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)