test: due to persistent conn retry, don't consider already connected an error

This commit is contained in:
Olaoluwa Osuntokun 2016-12-14 18:24:01 -08:00
parent e6a0b7bef6
commit a88b093843
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2

@ -7,6 +7,7 @@ import (
"io/ioutil"
"os"
"path/filepath"
"strings"
"sync"
"testing"
"time"
@ -1100,7 +1101,8 @@ func testRevokedCloseRetribution(net *networkHarness, t *harnessTest) {
t.Fatalf("db copy failed: %v", bobChan.NumUpdates)
}
if err = net.ConnectNodes(ctxb, net.Alice, net.Bob); err != nil {
err = net.ConnectNodes(ctxb, net.Alice, net.Bob)
if err != nil && !strings.Contains(err.Error(), "already connected") {
t.Fatalf("unable to connect bob and alice: %v", err)
}