From 845f13ce890a457aed0555781e7653283499ae73 Mon Sep 17 00:00:00 2001 From: JacksonBurns Date: Thu, 23 Jan 2025 12:03:00 -0500 Subject: [PATCH] is this the correct syntax? who knows, i don't have any type hints --- test/rmgpy/reactionTest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/rmgpy/reactionTest.py b/test/rmgpy/reactionTest.py index 3899f18078..3fd801105f 100644 --- a/test/rmgpy/reactionTest.py +++ b/test/rmgpy/reactionTest.py @@ -2954,7 +2954,7 @@ def test_pdep_arrhenius(self): # Check that the reaction string is the same assert repr(converted_obj) == repr(ct_obj) # Check that the Arrhenius rates are identical - assert converted_obj.PlogRate.rate == ct_obj.PlogRate.rate + assert converted_obj.rate.rates == ct_obj.rate.rates def test_multi_pdep_arrhenius(self): """ @@ -2975,7 +2975,7 @@ def test_multi_pdep_arrhenius(self): # Check that the reaction string is the same assert repr(converted_rxn) == repr(ct_rxn) # Check that the Arrhenius rates are identical - assert converted_rxn.PlogRate.rate == ct_rxn.PlogRate.rate + assert converted_rxn.rate.rates == ct_rxn.rate.rates def test_chebyshev(self): """