Skip to content

Commit 3453367

Browse files
authored
fix(hydrator): Fix compilation error (#26024)
Signed-off-by: Oliver Gondža <ogondza@gmail.com>
1 parent 2e63883 commit 3453367

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/e2e/hydrator_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,11 +175,11 @@ func TestHydratorWithHelm(t *testing.T) {
175175
require.Equal(t, "helm-hydrated-with-inline-params", output)
176176

177177
// Verify that the namespace was passed to helm
178-
output, err = fixture.Run("", "kubectl", "-n="+fixture.DeploymentNamespace(),
178+
output, err = fixture.Run("", "kubectl", "-n="+ctx.DeploymentNamespace(),
179179
"get", "configmap", "my-map",
180180
"-ojsonpath={.data.helmns}")
181181
require.NoError(t, err)
182-
require.Equal(t, fixture.DeploymentNamespace(), output)
182+
require.Equal(t, ctx.DeploymentNamespace(), output)
183183
})
184184
}
185185

0 commit comments

Comments
 (0)