Skip to content

Commit 233b572

Browse files
authored
Merge pull request #116 from abhinandanpb/master
Fixing the test description and validation message
2 parents 74bbd4e + 9ad4a2c commit 233b572

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/validate/image.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ var _ = framework.KubeDescribe("Image Manager", func() {
102102

103103
})
104104

105-
It("listImage should get exactly 3 repoTags in the result image [Conformance]", func() {
105+
It("listImage should get exactly 2 repoTags in the result image [Conformance]", func() {
106106
// different tags refer to the same image
107107
testImageList := []string{
108108
"busybox:1-uclibc",
@@ -129,7 +129,7 @@ var _ = framework.KubeDescribe("Image Manager", func() {
129129
count = 0
130130
}
131131
}
132-
Expect(count).To(Equal(2), "Should have three repoTags in single image in list")
132+
Expect(count).To(Equal(2), "Should have two repoTags in single image in list")
133133
})
134134
})
135135

0 commit comments

Comments
 (0)