Browse Source

Opens up the timing on the metrics test so it's less flaky.

pull/3684/head
James Phillips 7 years ago
parent
commit
3177c2b450
No known key found for this signature in database
GPG Key ID: 77183E682AC5FC11
  1. 3
      api/agent_test.go

3
api/agent_test.go

@ -37,7 +37,8 @@ func TestAPI_AgentMetrics(t *testing.T) {
defer s.Stop()
agent := c.Agent()
retry.Run(t, func(r *retry.R) {
timer := &retry.Timer{Timeout: 10 * time.Second, Wait: 500 * time.Millisecond}
retry.RunWith(timer, t, func(r *retry.R) {
metrics, err := agent.Metrics()
if err != nil {
r.Fatalf("err: %v", err)

Loading…
Cancel
Save