From 4506472319ba3f664fc0625ada6276d0944e31fa Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Mon, 28 Oct 2024 15:43:32 +0100 Subject: [PATCH] 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. --- msg_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/msg_test.go b/msg_test.go index 11c9010..7fb5bbe 100644 --- a/msg_test.go +++ b/msg_test.go @@ -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 {