Skip to content

Commit

Permalink
Fix test log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
arjan-bal committed Oct 8, 2024
1 parent 58e2ff7 commit 1ff881d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion balancer/pickfirstleaf/pickfirstleaf_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ func (s) TestPickFirstLeaf_TFPickerUpdate(t *testing.T) {
sc1.UpdateState(balancer.SubConnState{ConnectivityState: connectivity.TransientFailure, ConnectionError: tfErr})

if err := cc.WaitForPickerWithErr(ctx, balancer.ErrNoSubConnAvailable); err != nil {
t.Fatalf("cc.WaitForPickerWithErr(%v) returned error: %v", tfErr, err)
t.Fatalf("cc.WaitForPickerWithErr(%v) returned error: %v", balancer.ErrNoSubConnAvailable, err)
}

sc2 := <-cc.NewSubConnCh
Expand Down

0 comments on commit 1ff881d

Please sign in to comment.