Fix tests after merge

This commit is contained in:
Ryan Uber 2015-05-11 18:53:09 -07:00
parent d3345ec9cb
commit 3ce3c663ad
2 changed files with 7 additions and 4 deletions

View File

@ -86,8 +86,9 @@ func TestAgent_Services(t *testing.T) {
} }
func TestAgent_Services_CheckPassing(t *testing.T) { func TestAgent_Services_CheckPassing(t *testing.T) {
t.Parallel()
c, s := makeClient(t) c, s := makeClient(t)
defer s.stop() defer s.Stop()
agent := c.Agent() agent := c.Agent()
reg := &AgentServiceRegistration{ reg := &AgentServiceRegistration{
@ -129,8 +130,9 @@ func TestAgent_Services_CheckPassing(t *testing.T) {
} }
func TestAgent_Services_CheckBadStatus(t *testing.T) { func TestAgent_Services_CheckBadStatus(t *testing.T) {
t.Parallel()
c, s := makeClient(t) c, s := makeClient(t)
defer s.stop() defer s.Stop()
agent := c.Agent() agent := c.Agent()
reg := &AgentServiceRegistration{ reg := &AgentServiceRegistration{
@ -312,8 +314,9 @@ func TestAgent_Checks(t *testing.T) {
} }
func TestAgent_CheckStartPassing(t *testing.T) { func TestAgent_CheckStartPassing(t *testing.T) {
t.Parallel()
c, s := makeClient(t) c, s := makeClient(t)
defer s.stop() defer s.Stop()
agent := c.Agent() agent := c.Agent()

View File

@ -383,7 +383,7 @@ func TestAgent_AddCheck_StartPassing(t *testing.T) {
Script: "exit 0", Script: "exit 0",
Interval: 15 * time.Second, Interval: 15 * time.Second,
} }
err := agent.AddCheck(health, chk, false) err := agent.AddCheck(health, chk, false, "")
if err != nil { if err != nil {
t.Fatalf("err: %v", err) t.Fatalf("err: %v", err)
} }