Skip to content

Commit

Permalink
chore: rename test func
Browse files Browse the repository at this point in the history
  • Loading branch information
squakez committed Mar 6, 2023
1 parent d43bb6e commit 72ce537
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e/common/traits/builder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func TestBuilderTrait(t *testing.T) {

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

Expect(Kamel("delete", "--all", "-n", ns).Execute()).To(Succeed())
})
Expand Down
2 changes: 1 addition & 1 deletion e2e/support/test_support.go
Original file line number Diff line number Diff line change
Expand Up @@ -1349,7 +1349,7 @@ func Configmap(ns string, name string) func() *corev1.ConfigMap {
}
}

func Pod(ns string, name string) func() *corev1.Pod {
func BuilderPod(ns string, name string) func() *corev1.Pod {
return func() *corev1.Pod {
pod := corev1.Pod{
TypeMeta: metav1.TypeMeta{
Expand Down

0 comments on commit 72ce537

Please sign in to comment.