From ea3ac2fc91167b12e13dd1bfe3da80e0f7fcadf7 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Fri, 2 Aug 2013 23:17:49 +0000 Subject: [PATCH] [Test] Fix file name used for Cython pdep tests --- interfaces/cython/cantera/test/test_kinetics.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/interfaces/cython/cantera/test/test_kinetics.py b/interfaces/cython/cantera/test/test_kinetics.py index 293ff6bcf..841d26dcd 100644 --- a/interfaces/cython/cantera/test/test_kinetics.py +++ b/interfaces/cython/cantera/test/test_kinetics.py @@ -233,14 +233,14 @@ class KineticsRepeatability(utilities.CanteraTest): self.check_rates_pressure('h2o2.xml') def test_pdep_composition(self): - self.check_rates_composition('pdep_test.xml') + self.check_rates_composition('pdep-test.xml') def test_pdep_temperature(self): - self.check_rates_temperature1('pdep_test.xml') - self.check_rates_temperature2('pdep_test.xml') + self.check_rates_temperature1('pdep-test.xml') + self.check_rates_temperature2('pdep-test.xml') def test_pdep_pressure(self): - self.check_rates_pressure('pdep_test.xml') + self.check_rates_pressure('pdep-test.xml') class TestEmptyKinetics(utilities.CanteraTest):