Skip to content

Commit

Permalink
Merge pull request #149 from shuangxiangkan/master
Browse files Browse the repository at this point in the history
Modify the default threshold of diff_test
  • Loading branch information
yuleisui authored Sep 4, 2024
2 parents ccd4d1b + aa80dc1 commit a5c7c68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diff_tests/difftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def comparer_andersen(stats1: Stats, stats2: Stats):
else:
return
# Default threshold
if delta > 0.001:
if delta > 0.001008:
raise ValueError(f"Diff AvgTopLvlPtsSize {delta} too large")

def comparer_filesystem(stats1: Stats, stats2: Stats):
Expand Down

0 comments on commit a5c7c68

Please sign in to comment.