test/client: correctness nit

This commit is contained in:
Zack Schuster 2020-05-27 04:31:32 -07:00
parent efd3267f12
commit 7b758cc054
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ test.cb('client allows message with only `bcc` recipient header', (t) => {
t.is(mail.text, msg.text + '\n\n\n');
t.is(mail.subject, msg.subject);
t.is(mail.from?.text, msg.from);
t.is(mail.bcc?.text, undefined);
t.is(mail.bcc, undefined);
},
t.end
);