File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2936,9 +2936,9 @@ def test_multi_arrhenius(self):
29362936 # Check that the reaction string is the same
29372937 assert repr (converted_rxn ) == repr (ct_rxn )
29382938 # Check that the Arrhenius rates are identical
2939- assert round (abs (converted_rxn .rate .pre_exponential_factor - ct_rxn .rate .pre_exponential_factor ), 3 ) == 0
2940- assert round (abs (converted_rxn .rate .temperature_exponent - ct_rxn .rate .temperature_exponent ), 7 ) == 0
2941- assert round (abs (converted_rxn .rate .activation_energy - ct_rxn .rate .activation_energy ), 7 ) == 0
2939+ assert round ((converted_rxn .rate .pre_exponential_factor / ct_rxn .rate .pre_exponential_factor ), 7 ) == 1
2940+ assert round ((converted_rxn .rate .temperature_exponent / ct_rxn .rate .temperature_exponent ), 7 ) == 1
2941+ assert round ((converted_rxn .rate .activation_energy / ct_rxn .rate .activation_energy ), 7 ) == 1
29422942
29432943 def test_pdep_arrhenius (self ):
29442944 """
You can’t perform that action at this time.
0 commit comments