integration: fix NewClientV3 error messages

This commit is contained in:
Gyu-Ho Lee
2016-05-12 10:06:42 -07:00
parent 2e011053b1
commit 78ae4b92a6
3 changed files with 4 additions and 4 deletions

View File

@ -739,7 +739,7 @@ func NewClusterV3(t *testing.T, cfg *ClusterConfig) *ClusterV3 {
for _, m := range clus.Members {
client, err := NewClientV3(m)
if err != nil {
t.Fatal(err)
t.Fatalf("cannot create client: %v", err)
}
clus.clients = append(clus.clients, client)
}