From 0d45b1065d9f1820670a69e8b1d4f6733b11fbb1 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Thu, 22 Apr 2021 20:42:19 -0400 Subject: [PATCH] [Test] Fix extinction test cases that weren't using the right temperature --- interfaces/cython/cantera/test/test_onedim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces/cython/cantera/test/test_onedim.py b/interfaces/cython/cantera/test/test_onedim.py index 3d6b999af..a4b858f43 100644 --- a/interfaces/cython/cantera/test/test_onedim.py +++ b/interfaces/cython/cantera/test/test_onedim.py @@ -823,7 +823,7 @@ class TestDiffusionFlame(utilities.CanteraTest): def run_extinction(self, mdot_fuel, mdot_ox, T_ox, width, P): self.create_sim(fuel='H2:1.0', oxidizer='O2:1.0', p=ct.one_atm*P, - mdot_fuel=mdot_fuel, mdot_ox=mdot_ox, width=width) + mdot_fuel=mdot_fuel, mdot_ox=mdot_ox, T_ox=T_ox, width=width) self.sim.solve(loglevel=0, auto=True) self.assertFalse(self.sim.extinct())