endpoint/smtp: Unbreak Received test

Ref. d9f1b94e07
This commit is contained in:
fox.cpp 2020-05-27 23:08:43 +03:00
parent d9f1b94e07
commit 64c91fcc7c
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -514,7 +514,7 @@ func TestSMTPDelivery_SubmissionAuthOK(t *testing.T) {
t.Error("Wrong AuthPassword:", msg.MsgMeta.Conn.AuthPassword)
}
receivedPrefix := ` by mx.example.com (envelope-sender <sender@example.org>) with ESMTP id ` + msgID
receivedPrefix := `by mx.example.com (envelope-sender <sender@example.org>) with ESMTP id ` + msgID
if !strings.HasPrefix(msg.Header.Get("Received"), receivedPrefix) {
t.Error("Wrong Received contents:", msg.Header.Get("Received"))
}