diff --git a/main.go b/main.go index c677469..5c60c6e 100644 --- a/main.go +++ b/main.go @@ -39,7 +39,7 @@ func PipelineHandler(pipeline pipelines.IPipeline, storageProvider storage.IStor func IndexHandler(pipelines []pipelines.IPipeline, w http.ResponseWriter, r *http.Request) { var pipelineNames []string for _, x := range pipelines { - pipelineNames = append(pipelineNames, x.GetName()) + pipelineNames = append(pipelineNames, x.GetSlug()) } w.Header().Set("Content-Type", "application/json") diff --git a/main_test.go b/main_test.go index 3286a51..1fb910a 100644 --- a/main_test.go +++ b/main_test.go @@ -44,7 +44,7 @@ func TestIndexRoute(t *testing.T) { err = json.Unmarshal(responseRecorder.Body.Bytes(), &body) assert.Nil(t, err) assert.Equal(t, 1, len(body.Pipelines)) - assert.Equal(t, data.Name, body.Pipelines[0]) + assert.Equal(t, data.Slug, body.Pipelines[0]) }) }