Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
gplepage committed Jul 8, 2024
1 parent a9c1d76 commit 5f00923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_multifitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def agree_ref(self, p):
print('***', r[k], p[k])
if abs(r[k].mean - p[k].mean) > 5 * r[k].sdev:
return False
if abs(r[k].sdev - p[k].sdev) > 5 * r[k].sdev:
if abs(r[k].sdev - p[k].sdev) > r[k].sdev:
return False
return True

Expand Down

0 comments on commit 5f00923

Please sign in to comment.