Skip to content

Commit

Permalink
test(auth): fix TestWithEndpointAndPoolSize (googleapis#11037)
Browse files Browse the repository at this point in the history
I believe this test started failing because of a recent CI infra
move. Test could also just be removed as it does not assert anything.
  • Loading branch information
codyoss authored Oct 25, 2024
1 parent 7e7c03e commit 1eb48b7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions auth/grpctransport/pool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,9 @@ func TestWithEndpointAndPoolSize(t *testing.T) {
_, l := mockServer(t)
ctx := context.Background()
connPool, err := Dial(ctx, false, &Options{
Endpoint: l.Addr().String(),
PoolSize: 4,
Endpoint: l.Addr().String(),
PoolSize: 4,
DisableAuthentication: true,
})
if err != nil {
t.Fatal(err)
Expand Down

0 comments on commit 1eb48b7

Please sign in to comment.