mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
fix(hydrator): Fix compilation error (#26024)
Signed-off-by: Oliver Gondža <ogondza@gmail.com>
This commit is contained in:
parent
54f29167a6
commit
30bfd51a84
1 changed files with 2 additions and 2 deletions
|
|
@ -176,11 +176,11 @@ func TestHydratorWithHelm(t *testing.T) {
|
|||
require.Equal(t, "helm-hydrated-with-inline-params", output)
|
||||
|
||||
// Verify that the namespace was passed to helm
|
||||
output, err = fixture.Run("", "kubectl", "-n="+fixture.DeploymentNamespace(),
|
||||
output, err = fixture.Run("", "kubectl", "-n="+ctx.DeploymentNamespace(),
|
||||
"get", "configmap", "my-map",
|
||||
"-ojsonpath={.data.helmns}")
|
||||
require.NoError(t, err)
|
||||
require.Equal(t, fixture.DeploymentNamespace(), output)
|
||||
require.Equal(t, ctx.DeploymentNamespace(), output)
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue