Skip to content

Commit f797b1e

Browse files
author
OpenShift Bot
authored
Merge pull request #13505 from bparees/build_names
Merged by openshift-bot
2 parents 902388c + 7c0c695 commit f797b1e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

test/extended/builds/no_outputname.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ var _ = g.Describe("[builds][Conformance] build without output image", func() {
2020
g.Describe("building from templates", func() {
2121
oc.SetOutputDir(exutil.TestContext.OutputDir)
2222

23-
g.It(fmt.Sprintf("should create an image from %q docker template without an output image reference defined", dockerImageFixture), func() {
23+
g.It(fmt.Sprintf("should create an image from a docker template without an output image reference defined"), func() {
2424
err := oc.Run("create").Args("-f", dockerImageFixture).Execute()
2525
o.Expect(err).NotTo(o.HaveOccurred())
2626

@@ -35,7 +35,7 @@ var _ = g.Describe("[builds][Conformance] build without output image", func() {
3535
o.Expect(buildLog).Should(o.ContainSubstring(`Build complete, no image push requested`))
3636
})
3737

38-
g.It(fmt.Sprintf("should create an image from %q S2i template without an output image reference defined", s2iImageFixture), func() {
38+
g.It(fmt.Sprintf("should create an image from a S2i template without an output image reference defined"), func() {
3939
err := oc.Run("create").Args("-f", s2iImageFixture).Execute()
4040
o.Expect(err).NotTo(o.HaveOccurred())
4141

test/extended/image_ecosystem/mariadb_ephemeral.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var _ = g.Describe("[image_ecosystem][mariadb][Slow] openshift mariadb image", f
1616
oc = exutil.NewCLI("mariadb-create", exutil.KubeConfigPath())
1717
)
1818
g.Describe("Creating from a template", func() {
19-
g.It(fmt.Sprintf("should process and create the %q template", templatePath), func() {
19+
g.It(fmt.Sprintf("should instantiate the template"), func() {
2020
oc.SetOutputDir(exutil.TestContext.OutputDir)
2121

2222
g.By(fmt.Sprintf("calling oc process -f %q", templatePath))

test/extended/image_ecosystem/mongodb_ephemeral.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ var _ = g.Describe("[image_ecosystem][mongodb] openshift mongodb image", func()
1919
oc := exutil.NewCLI("mongodb-create", exutil.KubeConfigPath()).Verbose()
2020

2121
g.Describe("creating from a template", func() {
22-
g.It(fmt.Sprintf("should process and create the %q template", templatePath), func() {
22+
g.It(fmt.Sprintf("should instantiate the template"), func() {
2323

2424
exutil.CheckOpenShiftNamespaceImageStreams(oc)
2525
g.By("creating a new app")

test/extended/image_ecosystem/mongodb_replica_statefulset.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var _ = g.Describe("[Conformance][image_ecosystem][mongodb][Slow] openshift mong
3131
ginkgolog("pod logs for %s:\n%s", podLogs, err)
3232
}
3333
})
34-
g.It(fmt.Sprintf("should process and create the %q template", templatePath), func() {
34+
g.It(fmt.Sprintf("should instantiate the template"), func() {
3535
oc.SetOutputDir(exutil.TestContext.OutputDir)
3636

3737
g.By("creating persistent volumes")

test/extended/image_ecosystem/mysql_ephemeral.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var _ = g.Describe("[image_ecosystem][mysql][Slow] openshift mysql image", func(
1616
oc = exutil.NewCLI("mysql-create", exutil.KubeConfigPath())
1717
)
1818
g.Describe("Creating from a template", func() {
19-
g.It(fmt.Sprintf("should process and create the %q template", templatePath), func() {
19+
g.It(fmt.Sprintf("should instantiate the template"), func() {
2020
oc.SetOutputDir(exutil.TestContext.OutputDir)
2121

2222
g.By(fmt.Sprintf("calling oc process -f %q", templatePath))

0 commit comments

Comments
 (0)