Skip to content

Commit 845f13c

Browse files
committed
is this the correct syntax? who knows, i don't have any type hints
1 parent 206d426 commit 845f13c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/rmgpy/reactionTest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2954,7 +2954,7 @@ def test_pdep_arrhenius(self):
29542954
# Check that the reaction string is the same
29552955
assert repr(converted_obj) == repr(ct_obj)
29562956
# Check that the Arrhenius rates are identical
2957-
assert converted_obj.PlogRate.rate == ct_obj.PlogRate.rate
2957+
assert converted_obj.rate.rates == ct_obj.rate.rates
29582958

29592959
def test_multi_pdep_arrhenius(self):
29602960
"""
@@ -2975,7 +2975,7 @@ def test_multi_pdep_arrhenius(self):
29752975
# Check that the reaction string is the same
29762976
assert repr(converted_rxn) == repr(ct_rxn)
29772977
# Check that the Arrhenius rates are identical
2978-
assert converted_rxn.PlogRate.rate == ct_rxn.PlogRate.rate
2978+
assert converted_rxn.rate.rates == ct_rxn.rate.rates
29792979

29802980
def test_chebyshev(self):
29812981
"""

0 commit comments

Comments
 (0)