Skip to content

Commit

Permalink
Fix usages of cf services in other operations tests
Browse files Browse the repository at this point in the history
  • Loading branch information
FelisiaM committed Mar 3, 2021
1 parent f327684 commit f8aa37e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion integration/v7/isolated/create_service_command_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
. "github.com/onsi/gomega/gexec"
)

const serviceCommand = "v3-service"
const serviceCommand = "service"

var _ = Describe("create-service command", func() {
Describe("help", func() {
Expand Down
4 changes: 2 additions & 2 deletions integration/v7/isolated/unshare_service_command_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ var _ = Describe("unshare-service command", func() {
By("validating the service is unshared", func() {
session = helpers.CF("service", serviceInstanceName)
Eventually(session).Should(Exit(0))
Expect(session.Out).To(Say(`This service is not currently shared.`))
Expect(session.Out).To(Say(`This service instance is not currently being shared.`))
})
})
})
Expand Down Expand Up @@ -279,7 +279,7 @@ var _ = Describe("unshare-service command", func() {
By("validating the service is unshared", func() {
session = helpers.CF("service", serviceInstanceName)
Eventually(session).Should(Exit(0))
Expect(session.Out).To(Say(`This service is not currently shared.`))
Expect(session.Out).To(Say(`This service instance is not currently being shared.`))
})
})
})
Expand Down
2 changes: 1 addition & 1 deletion integration/v7/isolated/update_service_command_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ var _ = Describe("update-service command", func() {
})

When("logged in and targeting a space", func() {
const serviceCommand = "v3-service"
const serviceCommand = "service"

var (
orgName string
Expand Down

0 comments on commit f8aa37e

Please sign in to comment.