Add missing newline after test function

A newline was added after an anonymous function block to improve code readability. This change adheres to proper formatting practices and enhances the maintainability of the code.
This commit is contained in:
Winni Neessen 2024-10-28 15:43:32 +01:00
parent 759452f346
commit 4506472319
Signed by: wneessen
GPG key ID: 385AC9889632126E

View file

@ -5432,6 +5432,7 @@ func TestMsg_WriteTo(t *testing.T) {
}
})
}
func TestMsg_Write(t *testing.T) {
message := testMessage(t)
if _, err := message.Write(io.Discard); err != nil {