1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-18 18:17:03 +00:00

smtp: fix formatting (#224)

This commit is contained in:
James Hillyerd
2021-07-31 10:32:08 -07:00
committed by GitHub
parent bf8536abb3
commit 4f9f961cac
2 changed files with 17 additions and 13 deletions

View File

@@ -120,7 +120,7 @@ func TestAuth(t *testing.T) {
server, logbuf, teardown := setupSMTPServer(ds)
defer teardown()
//PLAIN AUTH
// PLAIN AUTH
script := []scriptStep{
{"EHLO localhost", 250},
{"AUTH PLAIN aW5idWNrZXQ6cGFzc3dvcmQK", 235},
@@ -135,7 +135,7 @@ func TestAuth(t *testing.T) {
t.Error(err)
}
//LOGIN AUTH
// LOGIN AUTH
script = []scriptStep{
{"EHLO localhost", 250},
{"AUTH LOGIN", 334},