crazy ol' js

This commit is contained in:
Girish Ramakrishnan 2015-09-28 18:44:35 -07:00
parent 5c58e861f3
commit c190d42096
1 changed files with 3 additions and 3 deletions

View File

@ -62,9 +62,9 @@ describe('Appstore new user flow', function () {
it('has setup DNS records correctly', function (done) {
async.series([
cloudron.checkSPF,
cloudron.checkDKIM,
cloudron.CheckDMARC
cloudron.checkSPF.bind(cloudron),
cloudron.checkDKIM.bind(cloudron),
cloudron.CheckDMARC.bind(cloudron)
], done);
});