From 425a190eb11c3fc9a97925bfcf8daade623bdb63 Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Fri, 25 Oct 2024 11:36:05 +0200 Subject: [PATCH] fumpt'ed formatting --- eml_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eml_test.go b/eml_test.go index b00098c..f89801a 100644 --- a/eml_test.go +++ b/eml_test.go @@ -901,7 +901,8 @@ func TestEMLToMsgFromReader(t *testing.T) { }{ { "RFC5322 A1.1 example mail", exampleMailRFC5322A11, EncodingUSASCII, - "Saying Hello"}, + "Saying Hello", + }, { "Plain text no encoding (7bit)", exampleMailPlain7Bit, EncodingUSASCII, "Example mail // plain text without encoding", @@ -1158,7 +1159,6 @@ func TestEMLToMsgFromFile(t *testing.T) { t.Errorf("failed to parse EML string: want subject %s, got %s", "Saying Hello", gotSubject[0]) } - }) t.Run("EMLToMsgFromFile fails on file not found", func(t *testing.T) { if _, err := EMLToMsgFromFile("testdata/not-existing.eml"); err == nil {