@@ -85,7 +85,7 @@ func newChartCommand() *cobra.Command {
85
85
f .BoolVar (& diff .resetValues , "reset-values" , false , "reset the values to the ones built into the chart and merge in any new values" )
86
86
f .BoolVar (& diff .allowUnreleased , "allow-unreleased" , false , "enables diffing of releases that are not yet deployed via Helm" )
87
87
f .BoolVar (& diff .noHooks , "no-hooks" , false , "disable diffing of hooks" )
88
- f .BoolVar (& diff .noTests , "no -tests" , false , "disable diffing of the test hooks specifically " )
88
+ f .BoolVar (& diff .includeTests , "include -tests" , false , "enable the diffing of the helm test hooks" )
89
89
f .BoolVar (& diff .devel , "devel" , false , "use development versions, too. Equivalent to version '>0.0.0-0'. If --version is set, this is ignored." )
90
90
f .StringArrayVar (& diff .suppressedKinds , "suppress" , []string {}, "allows suppression of the values listed in the diff output" )
91
91
f .IntVarP (& diff .outputContext , "context" , "C" , - 1 , "output NUM lines of context around changes" )
@@ -166,8 +166,8 @@ func (d *diffCmd) run() error {
166
166
currentSpecs = manifest .Parse (releaseResponse .Release .Manifest , releaseResponse .Release .Namespace )
167
167
newSpecs = manifest .Parse (upgradeResponse .Release .Manifest , upgradeResponse .Release .Namespace )
168
168
} else {
169
- currentSpecs = manifest .ParseRelease (releaseResponse .Release , d .noTests )
170
- newSpecs = manifest .ParseRelease (upgradeResponse .Release , d .noTests )
169
+ currentSpecs = manifest .ParseRelease (releaseResponse .Release , d .includeTests )
170
+ newSpecs = manifest .ParseRelease (upgradeResponse .Release , d .includeTests )
171
171
}
172
172
}
173
173
0 commit comments