Skip to content

Commit

Permalink
round two changes after pr test run
Browse files Browse the repository at this point in the history
  • Loading branch information
gabemontero committed Dec 1, 2020
1 parent 5cb082f commit d77afa2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/extended/builds/service.go
Expand Up @@ -20,7 +20,7 @@ var _ = g.Describe("[sig-builds][Feature:Builds] build can reference a cluster s
testDockerfile = `
FROM image-registry.openshift-image-registry.svc:5000/openshift/tools:latest
RUN cat /etc/resolv.conf
RUN curl -vvv hello-openshift:6379
RUN curl -vvv hello-openshift:8080
`
)

Expand All @@ -41,7 +41,7 @@ RUN curl -vvv hello-openshift:6379
g.Describe("with a build being created from new-build", func() {
g.It("should be able to run a build that references a cluster service", func() {
g.By("standing up a new hello world service")
err := oc.Run("new-app").Args("quay.io/openshifttest/hello-openshift").Execute()
err := oc.Run("new-app").Args("quay.io/openshifttest/hello-openshift:openshift").Execute()
o.Expect(err).NotTo(o.HaveOccurred())

deploy, derr := oc.KubeClient().AppsV1().Deployments(oc.Namespace()).Get(context.Background(), "hello-openshift", metav1.GetOptions{})
Expand Down

0 comments on commit d77afa2

Please sign in to comment.