Skip to content

Commit

Permalink
test(pubsub): increase ordering key test timeout (#4897)
Browse files Browse the repository at this point in the history
  • Loading branch information
hongalex committed Oct 4, 2021
1 parent 906fb7c commit 2fa096d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pubsub/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1182,8 +1182,8 @@ func TestIntegration_OrderedKeys_Basic(t *testing.T) {
if got, want := r, fmt.Sprintf("item-%d", i); got != want {
t.Fatalf("%d: got %s, want %s", i, got, want)
}
case <-time.After(5 * time.Second):
t.Fatalf("timed out after 5s waiting for item %d", i)
case <-time.After(30 * time.Second):
t.Fatalf("timed out after 30s waiting for item %d", i)
}
}
}
Expand Down

0 comments on commit 2fa096d

Please sign in to comment.