Use a 15s instead of 10s timeout on this test. The `default` subtest takes 9s on my laptop, so pad that for CI. (#11221)

This commit is contained in:
Nick Cabatoff 2021-03-29 09:51:19 -04:00 committed by GitHub
parent 11f43ef6a6
commit 62c1f25140
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1415,7 +1415,7 @@ vault {
// the temp dir before Agent has had time to render and will
// likely fail the test
tick := time.Tick(1 * time.Second)
timeout := time.After(10 * time.Second)
timeout := time.After(15 * time.Second)
var err error
for {
select {