File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -53,21 +53,21 @@ func (s) TestBalancerGroup_RemoveImmediately(t *testing.T) {
5353 childLBName1 := strings .ToLower (t .Name ()) + "-child-1"
5454 t .Logf ("Registering a child balancer with name %q" , childLBName1 )
5555 stub .Register (childLBName1 , stub.BalancerFuncs {
56- Init : func (bd * stub.BalancerData ) {
56+ Init : func (* stub.BalancerData ) {
5757 childLBCreated <- childLBName1
5858 },
59- Close : func (bd * stub.BalancerData ) {
59+ Close : func (* stub.BalancerData ) {
6060 childLBClosed <- childLBName1
6161 },
6262 })
6363
6464 childLBName2 := strings .ToLower (t .Name ()) + "-child-2"
6565 t .Logf ("Registering a child balancer with name %q" , childLBName2 )
6666 stub .Register (childLBName2 , stub.BalancerFuncs {
67- Init : func (bd * stub.BalancerData ) {
67+ Init : func (* stub.BalancerData ) {
6868 childLBCreated <- childLBName2
6969 },
70- Close : func (bd * stub.BalancerData ) {
70+ Close : func (* stub.BalancerData ) {
7171 childLBClosed <- childLBName2
7272 },
7373 })
You can’t perform that action at this time.
0 commit comments