Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dfawley committed Jun 7, 2023
1 parent 4900468 commit 95cb0f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/subconn_test.go
Expand Up @@ -110,7 +110,7 @@ func (s) TestSubConnEmpty(t *testing.T) {
}
defer ss.Stop()
if _, err := ss.Client.EmptyCall(ctx, &testpb.Empty{}); err != nil {
t.Fatalf("UnaryCall RPC failed: %v", err)
t.Fatalf("EmptyCall failed: %v", err)
}

t.Log("Removing addresses from resolver and SubConn")
Expand All @@ -120,6 +120,6 @@ func (s) TestSubConnEmpty(t *testing.T) {
t.Log("Re-adding addresses to resolver and SubConn")
ss.R.UpdateState(resolver.State{Addresses: []resolver.Address{{Addr: ss.Address}}})
if _, err := ss.Client.EmptyCall(ctx, &testpb.Empty{}); err != nil {
t.Fatalf("UnaryCall RPC failed: %v", err)
t.Fatalf("EmptyCall failed: %v", err)
}
}

0 comments on commit 95cb0f6

Please sign in to comment.