Skip to content

Commit 7f3196a

Browse files
mauricebrinkmannsethboyles
authored andcommitted
fix spaces in int test
1 parent ff68186 commit 7f3196a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

integration/v7/isolated/map_route_command_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var _ = Describe("map-route command", func() {
2929

3030
Eventually(session).Should(Say(`USAGE:`))
3131
Eventually(session).Should(Say(`Map an HTTP route:\n`))
32-
Eventually(session).Should(Say(`cf map-route APP_NAME DOMAIN \[--hostname HOSTNAME\] \[--path PATH\] \[--app-protocol PROTOCOL\] \[--app-port PORT\] \[--option OPTION=VALUE\]\n`))
32+
Eventually(session).Should(Say(`cf map-route APP_NAME DOMAIN \[--hostname HOSTNAME\] \[--path PATH\] \[--app-protocol PROTOCOL\] \[--app-port PORT\] \[--option OPTION=VALUE\]\n`))
3333
Eventually(session).Should(Say(`Map a TCP route:\n`))
3434
Eventually(session).Should(Say(`cf map-route APP_NAME DOMAIN \[--port PORT] \[--option OPTION=VALUE\]\n`))
3535
Eventually(session).Should(Say(`\n`))
@@ -48,8 +48,8 @@ var _ = Describe("map-route command", func() {
4848
Eventually(session).Should(Say(`--hostname, -n\s+Hostname for the HTTP route \(required for shared domains\)`))
4949
Eventually(session).Should(Say(`--path\s+Path for the HTTP route`))
5050
Eventually(session).Should(Say(`--port\s+Port for the TCP route \(default: random port\)`))
51-
Eventually(session).Should(Say(`--app-protocol\s+\[Beta flag, subject to change\] Protocol for the route destination \(default: http1\). Only applied to HTTP routes`))
52-
Eventually(session).Should(Say(`--app-port\s+\[Beta flag, subject to change\] App port for the route destination \(default: 8080\). Only applied to HTTP routes`))
51+
Eventually(session).Should(Say(`--app-protocol\s+\[Beta flag, subject to change\] Protocol for the route destination \(default: http1\).\s+Only applied to HTTP routes`))
52+
Eventually(session).Should(Say(`--app-port\s+\[Beta flag, subject to change\] App port for the route destination \(default: 8080\).\s+Only applied to HTTP routes`))
5353
Eventually(session).Should(Say(`--option, -o\s+Set the value of a per-route option`))
5454

5555
Eventually(session).Should(Say(`\n`))

0 commit comments

Comments
 (0)