Skip to content

Commit e81a3f1

Browse files
committed
chore: rename test func
1 parent 0c5c40e commit e81a3f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

e2e/common/traits/builder_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func TestBuilderTrait(t *testing.T) {
4949

5050
integrationKitName := IntegrationKit(ns, name)()
5151
builderKitName := fmt.Sprintf("camel-k-%s-builder", integrationKitName)
52-
Eventually(Pod(ns, builderKitName), TestTimeoutShort).Should(Not(BeNil()))
52+
Eventually(BuilderPod(ns, builderKitName), TestTimeoutShort).Should(Not(BeNil()))
5353

5454
Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed())
5555
})

e2e/support/test_support.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1349,7 +1349,7 @@ func Configmap(ns string, name string) func() *corev1.ConfigMap {
13491349
}
13501350
}
13511351

1352-
func Pod(ns string, name string) func() *corev1.Pod {
1352+
func BuilderPod(ns string, name string) func() *corev1.Pod {
13531353
return func() *corev1.Pod {
13541354
pod := corev1.Pod{
13551355
TypeMeta: metav1.TypeMeta{

0 commit comments

Comments
 (0)