Fix missed 10->100 conversion in tests

This commit is contained in:
Jeff Mitchell 2017-06-29 01:45:48 -04:00
parent 4502b649c6
commit 034a1f91be

View file

@ -834,7 +834,7 @@ func TestCluster(t testing.TB, handlers []http.Handler, base *CoreConfig, unseal
for i, ln := range lns {
ret[i] = &net.TCPAddr{
IP: ln.Address.IP,
Port: ln.Address.Port + 10,
Port: ln.Address.Port + 100,
}
}
return ret