testutil: Use HTTPAddr

This commit is contained in:
Ryan Uber 2015-03-11 09:47:47 -07:00
parent 41efd8861a
commit 73a2799b0d
2 changed files with 9 additions and 9 deletions

View File

@ -33,7 +33,7 @@ func makeClientWithConfig(
// Create server
server := testutil.NewTestServerConfig(t, cb2)
conf.Address = server.APIAddr
conf.Address = server.HTTPAddr
// Create client
client, err := NewClient(conf)

View File

@ -97,10 +97,10 @@ type TestCheck struct {
// TestServer is the main server wrapper struct.
type TestServer struct {
PID int
Config *TestServerConfig
APIAddr string
t *testing.T
PID int
Config *TestServerConfig
HTTPAddr string
t *testing.T
}
// NewTestServer is an easy helper method to create a new Consul
@ -153,10 +153,10 @@ func NewTestServerConfig(t *testing.T, cb ServerConfigCallback) *TestServer {
}
server := &TestServer{
Config: consulConfig,
PID: cmd.Process.Pid,
APIAddr: fmt.Sprintf("127.0.0.1:%d", consulConfig.Ports.HTTP),
t: t,
Config: consulConfig,
PID: cmd.Process.Pid,
HTTPAddr: fmt.Sprintf("127.0.0.1:%d", consulConfig.Ports.HTTP),
t: t,
}
// Wait for the server to be ready