From 665fe4802d315863df2d322e9d47a2820d8c7ff7 Mon Sep 17 00:00:00 2001 From: Omer Aplatony Date: Tue, 30 Jul 2024 21:53:47 +0300 Subject: [PATCH] fixed typo --- test/e2e/helm_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/helm_test.go b/test/e2e/helm_test.go index dad7d7884..6afce99fd 100644 --- a/test/e2e/helm_test.go +++ b/test/e2e/helm_test.go @@ -272,7 +272,7 @@ var _ = Describe("Create a proper set of manifests when using helm charts", func "deploymentOverride.infrastructure.deployment.containers[0].imageUrl": "test.org/cluster-api-vsphere/cluster-api-vsphere-controller:v1.10.0", }) Expect(err).ToNot(HaveOccurred()) - Expect(manifest).ToNot(BeEmpty()) + Expect(manifests).ToNot(BeEmpty()) expectedManifests, err := os.ReadFile(filepath.Join(customManifestsFolder, "only-infra-and-addon-override.yaml")) Expect(err).ToNot(HaveOccurred()) Expect(manifests).To(MatchYAML(string(expectedManifests)))