Skip to content

Commit 881fe07

Browse files
Merge pull request #28352 from nalind/proxy-clone-git-clone
OCPBUGS-23084: expect to not see "git clone" and not just "clone" during a test
2 parents 4a4f669 + 98674d5 commit 881fe07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/extended/builds/proxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var _ = g.Describe("[sig-builds][Feature:Builds][Slow] builds should support pro
4848
// repository is not accessible. It should never get to the clone.
4949
buildLog, err := br.Logs()
5050
o.Expect(err).NotTo(o.HaveOccurred())
51-
o.Expect(buildLog).NotTo(o.ContainSubstring("clone"))
51+
o.Expect(buildLog).NotTo(o.ContainSubstring("git clone"))
5252
o.Expect(buildLog).To(o.MatchRegexp(`unable to access '%s': Failed( to)? connect to`, "https://github.com/openshift/ruby-hello-world.git/"))
5353

5454
g.By("verifying the build sample-build-1 status")

0 commit comments

Comments
 (0)