We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 788022c commit 18039f0Copy full SHA for 18039f0
mmtbx/regression/tst_ml_estimate.py
@@ -31,8 +31,8 @@ def run():
31
ml_err_ = fmodel.model_error_ml()
32
ml_err.append(ml_err_)
33
result.append(flex.mean(ml_err))
34
- assert result[0] > 0 and result[0] < 0.03
35
- assert result[1] > 0.2 and result[1] <= 0.32
+ assert result[0] >= 0.0 and result[0] < 0.03, result
+ assert result[1] > 0.2 and result[1] <= 0.32, result
36
37
if (__name__ == "__main__"):
38
run()
0 commit comments