Wait for joining member in `TestClient_JoinLAN`

This commit is contained in:
William Tisäter 2014-05-27 00:55:20 +02:00
parent 405dfd99c1
commit 95e7752721
1 changed files with 6 additions and 6 deletions

View File

@ -70,13 +70,13 @@ func TestClient_JoinLAN(t *testing.T) {
} }
// Check the members // Check the members
if len(s1.LANMembers()) != 2 { testutil.WaitForResult(func() (bool, error) {
server_check := len(s1.LANMembers()) == 2
client_check := len(c1.LANMembers()) == 2
return server_check && client_check, nil
}, func(err error) {
t.Fatalf("bad len") t.Fatalf("bad len")
} })
if len(c1.LANMembers()) != 2 {
t.Fatalf("bad len")
}
// Check we have a new consul // Check we have a new consul
testutil.WaitForResult(func() (bool, error) { testutil.WaitForResult(func() (bool, error) {