From 842d4373f207edc0e040f19f2172ec771a887ca8 Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Sat, 26 Oct 2024 22:14:56 +0200 Subject: [PATCH] Add missing newline at EOF Ensured the file ends with a newline to comply with best practices. This change improves code readability and consistency with other files in the repository. --- msg_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/msg_test.go b/msg_test.go index dffc33b..377f659 100644 --- a/msg_test.go +++ b/msg_test.go @@ -1984,6 +1984,7 @@ func TestMsg_RequestMDNTo(t *testing.T) { } }) } + func TestMsg_RequestMDNToFormat(t *testing.T) { t.Run("RequestMDNToFormat with valid address", func(t *testing.T) { message := NewMsg() @@ -2006,6 +2007,7 @@ func TestMsg_RequestMDNToFormat(t *testing.T) { } }) } + func TestMsg_RequestMDNAddTo(t *testing.T) { t.Run("RequestMDNAddTo with valid address", func(t *testing.T) { message := NewMsg()