pull/13340/head
Steven Powell 2022-01-12 13:58:26 -08:00
parent 4cd3abfcde
commit 9908a1614e
1 changed files with 1 additions and 1 deletions

View File

@ -759,7 +759,7 @@ func validateExtraConfig(ctx context.Context, t *testing.T, profile string) {
t.Errorf("expected ExtraOptions to contain %s but got %s", expectedExtraOptions, afterCfg.Config.KubernetesConfig.ExtraOptions.String())
}
expectedExtraOptions := "kubelet.housekeeping-interval=5m"
expectedExtraOptions = "kubelet.housekeeping-interval=5m"
if !strings.Contains(afterCfg.Config.KubernetesConfig.ExtraOptions.String(), expectedExtraOptions) {
t.Errorf("expected ExtraOptions to contain %s but got %s", expectedExtraOptions, afterCfg.Config.KubernetesConfig.ExtraOptions.String())
}