Skip to content

Commit c7ef098

Browse files
committed
Remove commented test-case
Signed-off-by: Cornelius Weig <[email protected]>
1 parent 91a1d0d commit c7ef098

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

pkg/skaffold/config/util_test.go

-18
Original file line numberDiff line numberDiff line change
@@ -194,24 +194,6 @@ func Test_getConfigForKubeContextWithGlobalDefaults(t *testing.T) {
194194
DefaultRepo: "my-public-registry",
195195
},
196196
},
197-
/* todo(corneliusweig): this behavior can be enabled with `mergo.WithAppendSlice` -> clarify requirements
198-
{
199-
name: "merge global and context-specific insecure-registries",
200-
kubecontext: someKubeContext,
201-
cfg: &GlobalConfig{
202-
Global: &ContextConfig{
203-
InsecureRegistries: []string{"good.io", "better.io"},
204-
},
205-
ContextConfigs: []*ContextConfig{{
206-
Kubecontext: someKubeContext,
207-
InsecureRegistries: []string{"bad.io", "worse.io"},
208-
}},
209-
},
210-
expectedConfig: &ContextConfig{
211-
Kubecontext: someKubeContext,
212-
InsecureRegistries: []string{"bad.io", "worse.io", "good.io", "better.io"},
213-
},
214-
},*/
215197
}
216198
for _, test := range tests {
217199
testutil.Run(t, test.name, func(t *testutil.T) {

0 commit comments

Comments
 (0)