fix test var for container name

This commit is contained in:
Nikola Jokic 2025-03-07 14:25:21 +01:00
parent 1faa6faf6c
commit a138b54248
No known key found for this signature in database
GPG Key ID: 09265A4BEA4F568A
1 changed files with 1 additions and 1 deletions

View File

@ -442,7 +442,7 @@ var _ = Describe("EphemeralRunner", func() {
},
}
newPod.Status.ContainerStatuses = append(pod.Status.ContainerStatuses, corev1.ContainerStatus{
Name: EphemeralRunnerContainerName,
Name: v1alpha1.EphemeralRunnerContainerName,
State: corev1.ContainerState{},
})
err := k8sClient.Status().Patch(ctx, newPod, client.MergeFrom(pod))