aboutsummaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
Diffstat (limited to 'actions')
-rw-r--r--actions/hashing_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/hashing_test.go b/actions/hashing_test.go
index d249d8b..2e212e9 100644
--- a/actions/hashing_test.go
+++ b/actions/hashing_test.go
@@ -43,10 +43,10 @@ func TestCostsSearch(t *testing.T) {
t.Error(err)
}
- if actual*2 < target {
+ if actual*3 < target {
t.Errorf("actual=%v is too small (target=%v)", actual, target)
}
- if target*2 < actual {
+ if target*3 < actual {
t.Errorf("actual=%v is too big (target=%v)", actual, target)
}
}