diff options
Diffstat (limited to '')
-rw-r--r-- | tests/fuzz/api/scrypt.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fuzz/api/scrypt.go b/tests/fuzz/api/scrypt.go index eb29d2d..8e785a5 100644 --- a/tests/fuzz/api/scrypt.go +++ b/tests/fuzz/api/scrypt.go @@ -10,7 +10,7 @@ import ( func api(f *testing.F) { f.Fuzz(func(t *testing.T, password []byte, salt []byte) { - if len(salt) < saltMinLength { + if len(salt) < _SALT_MIN_LENGTH { return } |