Skip to content

Commit

Permalink
assert: Fix typos in Test_indentMessageLines
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunmahishi committed Mar 4, 2024
1 parent f37ae55 commit 48a148a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assert/assertions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3213,13 +3213,13 @@ func Test_indentMessageLines(t *testing.T) {
expected: "Hello\n\t \tWorld",
},
{
name: "single line - extreamly long",
name: "single line - extremely long",
msg: strings.Repeat("hello ", 20000),
longestLabelLen: 11,
expected: strings.Repeat("hello ", 20000),
},
{
name: "multi line - extreamly long",
name: "multi line - extremely long",
msg: strings.Repeat("hello\n", 20000),
longestLabelLen: 3,
expected: strings.TrimSpace(
Expand Down

0 comments on commit 48a148a

Please sign in to comment.