add wait to TestClient_JoinLAN

This commit is contained in:
Alvin Huang 2019-02-22 15:40:59 -05:00
parent 136df63e2c
commit 77eecf1046
1 changed files with 2 additions and 0 deletions

View File

@ -84,8 +84,10 @@ func TestClient_JoinLAN(t *testing.T) {
defer os.RemoveAll(dir2)
defer c1.Shutdown()
testrpc.WaitForLeader(t, s1.RPC, "dc1")
// Try to join
joinLAN(t, c1, s1)
testrpc.WaitForTestAgent(t, c1.RPC, "dc1")
retry.Run(t, func(r *retry.R) {
if got, want := c1.routers.NumServers(), 1; got != want {
r.Fatalf("got %d servers want %d", got, want)