Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
evisdrenova committed Nov 14, 2023
1 parent 4c579ec commit e09183a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion worker/internal/benthos/transformers/card_number.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ func GenerateValidLuhnCheckCardNumber() (int64, error) {
for _, k := range strNine {
digit, err := strconv.Atoi(string(k))
if err != nil {
fmt.Println("Error converting to int:", err)
continue

Check warning on line 93 in worker/internal/benthos/transformers/card_number.go

View check run for this annotation

Codecov / codecov/patch

worker/internal/benthos/transformers/card_number.go#L93

Added line #L93 was not covered by tests
}
cardNo = append(cardNo, digit)
Expand Down

0 comments on commit e09183a

Please sign in to comment.