Skip to content

Commit

Permalink
fix(cli): request filter bug
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHougaard committed Nov 29, 2024
1 parent cfc0ca1 commit 27beca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/test/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func SetupCli() {

func FilterRequestID(input string) string {

if !strings.Contains(input, "requestId") && strings.Contains(input, "reqId") {
if !strings.Contains(input, "requestId") && !strings.Contains(input, "reqId") {
return input
}

Expand Down

0 comments on commit 27beca7

Please sign in to comment.