Skip to content

Commit

Permalink
fix TestTLSServerNameOverwrite timeout error
Browse files Browse the repository at this point in the history
  • Loading branch information
menghanl committed Sep 9, 2016
1 parent 74f7afb commit 726462e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clientconn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func TestTLSServerNameOverwrite(t *testing.T) {
if err != nil {
t.Fatalf("Failed to create credentials %v", err)
}
conn, err := Dial("Non-Existent.Server:80", WithTransportCredentials(creds), WithTimeout(time.Millisecond))
conn, err := Dial("Non-Existent.Server:80", WithTransportCredentials(creds))
if err != nil {
t.Fatalf("Dial(_, _) = _, %v, want _, <nil>", err)
}
Expand Down

0 comments on commit 726462e

Please sign in to comment.