diff options
| author | Joe Richey joerichey@google.com <joerichey@google.com> | 2017-07-17 23:29:27 -0700 |
|---|---|---|
| committer | Joe Richey joerichey@google.com <joerichey@google.com> | 2017-07-17 23:29:27 -0700 |
| commit | 17f7dd867d0fd450377c6862c0782483d39ae408 (patch) | |
| tree | 5895bce36a9dff465057d84819b0d65255e1c702 | |
| parent | 907eb3af7712c0fcc318006d5e48a759641d38e3 (diff) | |
actions: Fixed flaky hashing test
| -rw-r--r-- | actions/hashing_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/hashing_test.go b/actions/hashing_test.go index e3cffb6..d249d8b 100644 --- a/actions/hashing_test.go +++ b/actions/hashing_test.go @@ -30,8 +30,8 @@ import ( // estimations are somewhat close to the targets. func TestCostsSearch(t *testing.T) { for _, target := range []time.Duration{ - 20 * time.Millisecond, 100 * time.Millisecond, + 200 * time.Millisecond, 500 * time.Millisecond, } { costs, err := getHashingCosts(target) |