Skip to content

Commit

Permalink
Fix for truncateMessage function
Browse files Browse the repository at this point in the history
  • Loading branch information
foteinigk committed Aug 13, 2024
1 parent ca77c86 commit fe8ed19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/txlib/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ func truncateMessage(message string) string {
}

if len(message) > maxLength {
return message[:maxLength-2] + ".."
return message[:maxLength] + ".."
}
return message
}
2 changes: 1 addition & 1 deletion internal/txlib/utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func TestTruncateMessage(t *testing.T) {
)
assert.Equal(
t,
"this is a long message that needs to be truncated because it exceeds the max..",
"this is a long message that needs to be truncated because it exceeds the maxim..",
result,
)

Expand Down

0 comments on commit fe8ed19

Please sign in to comment.