You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: e2e/multi-svc-app/multi_svc_app_test.go
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -249,8 +249,8 @@ var _ = Describe("Multiple Service App", func() {
249
249
250
250
routeURL=route.URL
251
251
ifsvcName=="front-end" {
252
-
// route.URL is of the form `https://example-alb.elb.us-west-2.amazonaws.com or example-nlb.elb.us-west-2.amazonaws.com, so we split to retrieve just one valid url`
253
-
routeURLs:=strings.Split(route.URL, "or")
252
+
// route.URL is of the form `https://exampleor-alb.elb.us-west-2.amazonaws.com or exampleor-nlb.elb.us-west-2.amazonaws.com, so we split to retrieve just one valid url`
253
+
routeURLs:=strings.Split(route.URL, "or")
254
254
Expect(len(routeURLs)).To(BeNumerically(">", 1))
255
255
routeURL=strings.TrimSpace(routeURLs[0])
256
256
@@ -335,8 +335,8 @@ var _ = Describe("Multiple Service App", func() {
335
335
route:=svc.Routes[0]
336
336
Expect(route.Environment).To(Equal("test"))
337
337
338
-
// route.URL is of the form `https://example-alb.elb.us-west-2.amazonaws.com or example-nlb.elb.us-west-2.amazonaws.com, so we split to retrieve just one valid url`
339
-
routeURLs:=strings.Split(route.URL, "or")
338
+
// route.URL is of the form `https://exampleor-alb.elb.us-west-2.amazonaws.com or exampleor-nlb.elb.us-west-2.amazonaws.com, so we split to retrieve just one valid url`
339
+
routeURLs:=strings.Split(route.URL, "or")
340
340
Expect(len(routeURLs)).To(BeNumerically(">", 1))
341
341
342
342
routeURL=strings.TrimSpace(routeURLs[0])
@@ -413,8 +413,8 @@ var _ = Describe("Multiple Service App", func() {
413
413
route:=svc.Routes[0]
414
414
Expect(route.Environment).To(Equal("test"))
415
415
416
-
// route.URL is of the form `https://example-alb.elb.us-west-2.amazonaws.com or example-nlb.elb.us-west-2.amazonaws.com, so we split to retrieve just one valid url`
417
-
routeURLs:=strings.Split(route.URL, "or")
416
+
// route.URL is of the form `https://exampleor-alb.elb.us-west-2.amazonaws.com or exampleor-nlb.elb.us-west-2.amazonaws.com, so we split to retrieve just one valid url`
417
+
routeURLs:=strings.Split(route.URL, "or")
418
418
Expect(len(routeURLs)).To(BeNumerically(">", 1))
419
419
420
420
routeURL=strings.TrimSpace(routeURLs[0])
@@ -467,8 +467,8 @@ var _ = Describe("Multiple Service App", func() {
467
467
// Calls the front end's magicwords endpoint
468
468
route:=svc.Routes[0]
469
469
470
-
// route.URL is of the form `https://example-alb.elb.us-west-2.amazonaws.com or example-nlb.elb.us-west-2.amazonaws.com, so we split to retrieve just one valid url`
471
-
routeURLs:=strings.Split(route.URL, "or")
470
+
// route.URL is of the form `https://exampleor-alb.elb.us-west-2.amazonaws.com or exampleor-nlb.elb.us-west-2.amazonaws.com, so we split to retrieve just one valid url`
0 commit comments