Skip to content

Commit

Permalink
fixed unit test based on update to v1.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vinu2003 committed Jul 10, 2020
1 parent a62fce9 commit a106636
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pkg/minikube/bootstrapper/bsutil/featuregates_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ func TestParseFeatureArgs(t *testing.T) {
expectedComponentFeatureArgs string
}{
{
description: "CoreDNS enabled",
featureGates: "CoreDNS=true",
description: "IPv6DualStack enabled",
featureGates: "IPv6DualStack=true",
expectedKubeadmFeatureArgs: map[string]bool{
"CoreDNS": true,
"IPv6DualStack": true,
},
expectedComponentFeatureArgs: "",
},
{
description: "CoreDNS disabled",
featureGates: "CoreDNS=false",
description: "IPv6DualStack disabled",
featureGates: "IPv6DualStack=false",
expectedKubeadmFeatureArgs: map[string]bool{
"CoreDNS": false,
"IPv6DualStack": false,
},
expectedComponentFeatureArgs: "",
},
Expand Down Expand Up @@ -73,7 +73,7 @@ func TestSupport(t *testing.T) {
expected bool
}{
{
name: "CoreDNS",
name: "IPv6DualStack",
expected: true,
},
{
Expand Down

0 comments on commit a106636

Please sign in to comment.