From cffc04fa919cca63f8b5983a4f7c8f38ebe08524 Mon Sep 17 00:00:00 2001 From: Alex Dadgar Date: Tue, 19 Jan 2016 11:18:03 -0800 Subject: [PATCH] Missing forward slash --- command/agent/job_endpoint_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/agent/job_endpoint_test.go b/command/agent/job_endpoint_test.go index 62643ac51..4c71e7f8c 100644 --- a/command/agent/job_endpoint_test.go +++ b/command/agent/job_endpoint_test.go @@ -458,7 +458,7 @@ func TestHTTP_PeriodicForce(t *testing.T) { } // Make the HTTP request - req, err := http.NewRequest("POST", "/v1/job/"+job.ID+"periodic/force", nil) + req, err := http.NewRequest("POST", "/v1/job/"+job.ID+"/periodic/force", nil) if err != nil { t.Fatalf("err: %v", err) }