From 17c5cfc44f3055adfeb5006c3d3d840b9d01f926 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Fri, 24 Jun 2016 12:54:03 -0500 Subject: [PATCH] do not escape the regexp qualifiers --- test/cloudron-backup-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cloudron-backup-test.js b/test/cloudron-backup-test.js index 8571b73..2387520 100644 --- a/test/cloudron-backup-test.js +++ b/test/cloudron-backup-test.js @@ -81,7 +81,7 @@ describe('Cloudron backup testing', function () { it('did send mail from cloudron user', function (done) { imap.probe({ - subject: common.regexp('^Hi from e2e test - ' + cloudron.fqdn() + '$'), + subject: common.regexp('Hi from e2e test - ' + cloudron.fqdn()), to: common.regexp('test+' + cloudron.fqdn() + '@cloudron.io'), body: /This release depends on you/ }, done);