From e617b978ea4161d7120f4f8f2565ff81dc52b2c8 Mon Sep 17 00:00:00 2001 From: Magnus Melin Date: Wed, 16 Sep 2020 15:00:45 +0300 Subject: [PATCH] Bug 1563891 - followup to fix linting. rs=eslint DONTBUILD --HG-- extra : amend_source : e5255401e054a8a1c4304ef5cf29d974b9f35d96 --- .../compose/test/unit/test_sendMailAddressIDN.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mailnews/compose/test/unit/test_sendMailAddressIDN.js b/mailnews/compose/test/unit/test_sendMailAddressIDN.js index 0c81b4a9b5..2f513b3a40 100644 --- a/mailnews/compose/test/unit/test_sendMailAddressIDN.js +++ b/mailnews/compose/test/unit/test_sendMailAddressIDN.js @@ -50,18 +50,18 @@ msgListener.prototype = { Assert.equal(aStatus, 0); do_check_transaction(server.playTransaction(), [ "EHLO test", - "MAIL FROM:<" + kSender + "> BODY=8BITMIME SIZE=" + originalData.length, + "MAIL FROM:<" + + kSender + + "> BODY=8BITMIME SIZE=" + + originalData.length, "RCPT TO:<" + this.rcpt + ">", "DATA", ]); // Compare data file to what the server received Assert.equal(originalData, server._daemon.post); - } - else { + } else { Assert.equal(aStatus, NS_ERROR_BUT_DONT_SHOW_ALERT); - do_check_transaction(server.playTransaction(), [ - "EHLO test", - ]); + do_check_transaction(server.playTransaction(), ["EHLO test"]); // Local address (before the @) has non-ascii char(s) or the @ is // missing from the address. An alert is triggered after the EHLO is // sent. Nothing else occurs so we "finish" the test to avoid