Browse Source

test: fix failure message in TestEmbedEtcd

Nick Miyake 9 years ago
parent
commit
e3b325c196
1 changed files with 1 additions and 1 deletions
  1. 1 1
      integration/embed_test.go

+ 1 - 1
integration/embed_test.go

@@ -91,7 +91,7 @@ func TestEmbedEtcd(t *testing.T) {
 			t.Errorf("%d: expected %d peers, got %d", i, tt.wpeers, len(e.Peers))
 			t.Errorf("%d: expected %d peers, got %d", i, tt.wpeers, len(e.Peers))
 		}
 		}
 		if len(e.Clients) != tt.wclients {
 		if len(e.Clients) != tt.wclients {
-			t.Errorf("%d: expected %d peers, got %d", i, tt.wclients, len(e.Clients))
+			t.Errorf("%d: expected %d clients, got %d", i, tt.wclients, len(e.Clients))
 		}
 		}
 		e.Close()
 		e.Close()
 	}
 	}