Skip to content

Commit

Permalink
is this the correct syntax? who knows, i don't have any type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonBurns committed Jan 23, 2025
1 parent 206d426 commit 845f13c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/rmgpy/reactionTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
"""
Expand All @@ -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):
"""
Expand Down

0 comments on commit 845f13c

Please sign in to comment.