Skip to content

Commit

Permalink
added regression values for est and uncertainty
Browse files Browse the repository at this point in the history
  • Loading branch information
richardjgowers committed Sep 22, 2023
1 parent 2c8b8ff commit ab0ae26
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions openfe/tests/protocols/test_openmm_equil_rfe_protocols.py
Original file line number Diff line number Diff line change
Expand Up @@ -1263,13 +1263,15 @@ def test_get_estimate(self, protocolresult):
est = protocolresult.get_estimate()

assert est
assert est.m == pytest.approx(-15.768768285032115)
assert isinstance(est, unit.Quantity)
assert est.is_compatible_with(unit.kilojoule_per_mole)

def test_get_uncertainty(self, protocolresult):
est = protocolresult.get_uncertainty()

assert est
assert est.m == pytest.approx(0.03662634237353985)
assert isinstance(est, unit.Quantity)
assert est.is_compatible_with(unit.kilojoule_per_mole)

Expand Down

0 comments on commit ab0ae26

Please sign in to comment.