Skip to content

Commit

Permalink
Refactor msg_test.go for improved readability.
Browse files Browse the repository at this point in the history
Adjusted the formatting of a test case definition to enhance code readability. The change introduces a clearer structure by splitting a long line into a well-organized multi-line format. No functional logic was modified.
  • Loading branch information
wneessen committed Jan 19, 2025
1 parent c27e52e commit 34077e9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions msg_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6130,8 +6130,10 @@ func TestMsg_WriteTo(t *testing.T) {
{2, ">", false, false, true},
{6, "From: <[email protected]>", true, true, false},
{7, "To: <[email protected]>", true, true, false},
{8, `Content-Type: multipart/signed; protocol="application/pkcs7-signature"; micalg=sha-256;`, true,
true, false},
{
8, `Content-Type: multipart/signed; protocol="application/pkcs7-signature"; micalg=sha-256;`, true,
true, false,
},
{9, ` boundary=`, false, true, false},
{10, "", true, false, false},
{11, "--", false, true, false},
Expand Down

0 comments on commit 34077e9

Please sign in to comment.