aboutsummaryrefslogtreecommitdiff
path: root/actions/hashing_test.go
diff options
context:
space:
mode:
authorJoseph Richey <joerichey@google.com>2018-02-09 04:01:32 -0800
committerGitHub <noreply@github.com>2018-02-09 04:01:32 -0800
commitaebae1aae2fc61185a8bbc96313d8462727ad202 (patch)
tree1307c7cccaede948a53be45343d4df711eb508b3 /actions/hashing_test.go
parentf4ccce6f486c26fdfa8d3d09929d464fc9368ab3 (diff)
parent575618f02ea7ed3edc53b4bcd24ecbfc6ef00e77 (diff)
Merge pull request #84 from google/argon2
Move to x/crypto/argon2
Diffstat (limited to 'actions/hashing_test.go')
-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)
}
}