Skip to content
This repository has been archived by the owner on May 3, 2022. It is now read-only.

Commit

Permalink
fix e2e test uses ChartValues instead of pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
hihilla committed Oct 8, 2020
1 parent f8ce164 commit 56be479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func TestRejectModificationToReleaseEnv(t *testing.T) {
}()

newApp := newApplication(ns.GetName(), appName, &allIn)
newApp.Spec.Template.Values = shipper.ChartValues{"replicaCount": targetReplicas}
newApp.Spec.Template.Values = &shipper.ChartValues{"replicaCount": targetReplicas}
newApp.Spec.Template.Chart.Name = "test-nginx"
newApp.Spec.Template.Chart.Version = "0.0.1"

Expand Down

0 comments on commit 56be479

Please sign in to comment.