Skip to content

Commit

Permalink
fix TestValidatePorts
Browse files Browse the repository at this point in the history
  • Loading branch information
prezha committed Jan 6, 2024
1 parent 79e4bb8 commit 4818ef5
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 4818ef5

Please sign in to comment.