Skip to content

Commit

Permalink
[cmd] increase timeout in TestPromptACProvider_prompt (#3270)
Browse files Browse the repository at this point in the history
  • Loading branch information
JackyWYX authored Jul 30, 2020
1 parent 181514d commit 9013f16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/blsgen/kms_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
},
}
Expand Down

0 comments on commit 9013f16

Please sign in to comment.