Skip to content

Commit 5b248cf

Browse files
committed
test: go: Make alias const have space like borrow const
1 parent f006a63 commit 5b248cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

smtp/server_dkim_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ func TestDelegate(t *testing.T) {
162162
assert(t, s.Mail(user1, nil))
163163
assert(t, s.Rcpt(to, nil))
164164
userAlias := "User alias"
165-
r, err := newSigned(domain1, "valid", user1, to, alias+" "+user3, userAlias)
165+
r, err := newSigned(domain1, "valid", user1, to, alias+user3, userAlias)
166166
assert(t, err)
167167
assert(t, s.Data(r))
168168

smtp/server_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var user5 = fmt.Sprintf("user5@%s", domain3)
2727
var fromRe = regexp.MustCompile(fmt.Sprintf(".*@%s", regexp.QuoteMeta(domain1)))
2828

2929
const borrow = "Borrowed "
30-
const alias = "Alias"
30+
const alias = "Alias "
3131
const plainTemplate = `From: %s
3232
To: %s
3333
Subject: %s

0 commit comments

Comments
 (0)