From 4e1c45c2aa19f639a65f30b0349b2e23c2c31a9b Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Thu, 10 Nov 2016 13:12:50 -0500 Subject: [PATCH] [Test] Fix typo in test_multiComponent --- interfaces/cython/cantera/test/test_transport.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interfaces/cython/cantera/test/test_transport.py b/interfaces/cython/cantera/test/test_transport.py index 9ac0b229d2..428de724d4 100644 --- a/interfaces/cython/cantera/test/test_transport.py +++ b/interfaces/cython/cantera/test/test_transport.py @@ -33,8 +33,8 @@ def test_mixtureAveraged(self): self.assertArrayNear(Dbin1, Dbin1.T) def test_multiComponent(self): - with self.assertRaises(AttributeError): - self.phase.Multi_diff_coeffs + with self.assertRaises(ct.CanteraError): + self.phase.multi_diff_coeffs self.assertArrayNear(self.phase.thermal_diff_coeffs, np.zeros(self.phase.n_species))