@@ -284,8 +284,8 @@ var _ = ginkgo.Describe("[Verify index server is working properly]", func() {
284
284
}
285
285
})
286
286
287
- ginkgo .It ("/devfiles/<devfile>/starterProjects /<starterProject> endpoint should return a zip archive for devfile starter project" , func () {
288
- resp , err := http .Get (config .Registry + "/devfiles/java-maven/starterProjects /springbootproject" )
287
+ ginkgo .It ("/devfiles/<devfile>/starter-projects /<starterProject> endpoint should return a zip archive for devfile starter project" , func () {
288
+ resp , err := http .Get (config .Registry + "/devfiles/java-maven/starter-projects /springbootproject" )
289
289
var bytes []byte
290
290
291
291
gomega .Expect (err ).NotTo (gomega .HaveOccurred ())
@@ -301,8 +301,8 @@ var _ = ginkgo.Describe("[Verify index server is working properly]", func() {
301
301
}))
302
302
})
303
303
304
- ginkgo .It ("/devfiles/<devfile>/<version>/starterProjects /<starterProject> endpoint should return a zip archive for devfile starter project" , func () {
305
- resp , err := http .Get (config .Registry + "/devfiles/java-maven/latest/starterProjects /springbootproject" )
304
+ ginkgo .It ("/devfiles/<devfile>/<version>/starter-projects /<starterProject> endpoint should return a zip archive for devfile starter project" , func () {
305
+ resp , err := http .Get (config .Registry + "/devfiles/java-maven/latest/starter-projects /springbootproject" )
306
306
var bytes []byte
307
307
308
308
gomega .Expect (err ).NotTo (gomega .HaveOccurred ())
@@ -318,15 +318,15 @@ var _ = ginkgo.Describe("[Verify index server is working properly]", func() {
318
318
}))
319
319
})
320
320
321
- ginkgo .It ("/devfiles/<devfile>/starterProjects /<starterProject> endpoint should return an error for a devfile that doesn't exist" , func () {
322
- resp , err := http .Get (config .Registry + "/devfiles/fake-stack/starterProjects /springbootproject" )
321
+ ginkgo .It ("/devfiles/<devfile>/starter-projects /<starterProject> endpoint should return an error for a devfile that doesn't exist" , func () {
322
+ resp , err := http .Get (config .Registry + "/devfiles/fake-stack/starter-projects /springbootproject" )
323
323
324
324
gomega .Expect (err ).NotTo (gomega .HaveOccurred ())
325
325
gomega .Expect (resp .StatusCode ).To (gomega .Equal (http .StatusNotFound ))
326
326
})
327
327
328
- ginkgo .It ("/devfiles/<devfile>/starterProjects /<starterProject> endpoint should return an error for a starter project that doesn't exist" , func () {
329
- resp , err := http .Get (config .Registry + "/devfiles/java-maven/starterProjects /fake-project" )
328
+ ginkgo .It ("/devfiles/<devfile>/starter-projects /<starterProject> endpoint should return an error for a starter project that doesn't exist" , func () {
329
+ resp , err := http .Get (config .Registry + "/devfiles/java-maven/starter-projects /fake-project" )
330
330
331
331
gomega .Expect (err ).NotTo (gomega .HaveOccurred ())
332
332
gomega .Expect (resp .StatusCode ).To (gomega .Equal (http .StatusNotFound ))
0 commit comments