mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-15 02:12:55 +01:00
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.
This commit is contained in:
parent
5c2831c331
commit
842d4373f2
1 changed files with 2 additions and 0 deletions
|
@ -1984,6 +1984,7 @@ func TestMsg_RequestMDNTo(t *testing.T) {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestMsg_RequestMDNToFormat(t *testing.T) {
|
func TestMsg_RequestMDNToFormat(t *testing.T) {
|
||||||
t.Run("RequestMDNToFormat with valid address", func(t *testing.T) {
|
t.Run("RequestMDNToFormat with valid address", func(t *testing.T) {
|
||||||
message := NewMsg()
|
message := NewMsg()
|
||||||
|
@ -2006,6 +2007,7 @@ func TestMsg_RequestMDNToFormat(t *testing.T) {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestMsg_RequestMDNAddTo(t *testing.T) {
|
func TestMsg_RequestMDNAddTo(t *testing.T) {
|
||||||
t.Run("RequestMDNAddTo with valid address", func(t *testing.T) {
|
t.Run("RequestMDNAddTo with valid address", func(t *testing.T) {
|
||||||
message := NewMsg()
|
message := NewMsg()
|
||||||
|
|
Loading…
Reference in a new issue