Skip to content

Commit

Permalink
use old values to facilitate tight tolerances in test
Browse files Browse the repository at this point in the history
  • Loading branch information
bjodah committed Sep 26, 2021
1 parent 9d2854e commit 1bcb5b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chempy/util/tests/test_expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ def __call__(self, variables, backend=math):

def _get_cv(kelvin=1, gram=1, mol=1):

Al = Substance.from_formula("Al", data={"DebyeT": 428 * kelvin})
Be = Substance.from_formula("Be", data={"DebyeT": 1440 * kelvin})
Al = Substance.from_formula("Al", data={"DebyeT": 428 * kelvin, "mass": 26.9815385})
Be = Substance.from_formula("Be", data={"DebyeT": 1440 * kelvin, "mass": 9.0121831})

def einT(s):
return 0.806 * s.data["DebyeT"]
Expand Down

0 comments on commit 1bcb5b9

Please sign in to comment.