Skip to content

Commit

Permalink
all: use strings.EqualFold for string comparison (#24890)
Browse files Browse the repository at this point in the history
  • Loading branch information
estensen authored and unclezoro committed Sep 21, 2022
1 parent 57da9c0 commit 4fb1e9d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion console/prompt/prompter.go
Expand Up @@ -143,7 +143,7 @@ func (p *terminalPrompter) PromptPassword(prompt string) (passwd string, err err
// choice to be made, returning that choice.
func (p *terminalPrompter) PromptConfirm(prompt string) (bool, error) {
input, err := p.Prompt(prompt + " [y/n] ")
if len(input) > 0 && strings.ToUpper(input[:1]) == "Y" {
if len(input) > 0 && strings.EqualFold(input[:1], "y") {
return true, nil
}
return false, err
Expand Down
4 changes: 2 additions & 2 deletions core/asm/compiler.go
Expand Up @@ -243,12 +243,12 @@ func (c *Compiler) pushBin(v interface{}) {
// isPush returns whether the string op is either any of
// push(N).
func isPush(op string) bool {
return strings.ToUpper(op) == "PUSH"
return strings.EqualFold(op, "PUSH")
}

// isJump returns whether the string op is jump(i)
func isJump(op string) bool {
return strings.ToUpper(op) == "JUMPI" || strings.ToUpper(op) == "JUMP"
return strings.EqualFold(op, "JUMPI") || strings.EqualFold(op, "JUMP")
}

// toBinary converts text to a vm.OpCode
Expand Down
2 changes: 1 addition & 1 deletion node/rpcstack.go
Expand Up @@ -357,7 +357,7 @@ func (h *httpServer) wsAllowed() bool {

// isWebsocket checks the header of an http request for a websocket upgrade request.
func isWebsocket(r *http.Request) bool {
return strings.ToLower(r.Header.Get("Upgrade")) == "websocket" &&
return strings.EqualFold(r.Header.Get("Upgrade"), "websocket") &&
strings.Contains(strings.ToLower(r.Header.Get("Connection")), "upgrade")
}

Expand Down
2 changes: 1 addition & 1 deletion node/rpcstack_test.go
Expand Up @@ -276,7 +276,7 @@ func rpcRequest(t *testing.T, url string, extraHeaders ...string) *http.Response
}
for i := 0; i < len(extraHeaders); i += 2 {
key, value := extraHeaders[i], extraHeaders[i+1]
if strings.ToLower(key) == "host" {
if strings.EqualFold(key, "host") {
req.Host = value
} else {
req.Header.Set(key, value)
Expand Down

0 comments on commit 4fb1e9d

Please sign in to comment.