Skip to content

Commit

Permalink
Merge pull request kubernetes#17906 from prezha/fixTestValidatePorts
Browse files Browse the repository at this point in the history
fix TestValidatePorts
  • Loading branch information
spowelljr committed Jan 8, 2024
2 parents 7fd843c + 4818ef5 commit 38da9d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/minikube/cmd/start_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ func TestValidatePorts(t *testing.T) {
if got != nil {
gotError = got.Error()
}
if gotError != test.errorMsg {
if !strings.EqualFold(gotError, test.errorMsg) {
t.Errorf("validatePorts(ports=%v): got %v, expected %v", test.ports, got, test.errorMsg)
}
})
Expand Down

0 comments on commit 38da9d7

Please sign in to comment.