[cmd] increase timeout in TestPromptACProvider_prompt (#3270)

pull/3275/head
Jacky Wang 4 years ago committed by GitHub
parent 181514d311
commit 9013f160cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      internal/blsgen/kms_test.go

@ -138,12 +138,12 @@ func TestPromptACProvider_prompt(t *testing.T) {
}{
{
delay: 100 * time.Microsecond,
timeout: 1000 * time.Microsecond,
timeout: 1 * time.Second,
expErr: nil,
},
{
delay: 2000 * time.Microsecond,
timeout: 1000 * time.Microsecond,
delay: 2 * time.Second,
timeout: 1 * time.Second,
expErr: errors.New("timed out"),
},
}

Loading…
Cancel
Save