From c190d42096b71723c21a94c9580bcb4bbf8a06d4 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 28 Sep 2015 18:44:35 -0700 Subject: [PATCH] crazy ol' js --- test/new-user-test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/new-user-test.js b/test/new-user-test.js index d92d113..db9f101 100644 --- a/test/new-user-test.js +++ b/test/new-user-test.js @@ -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); });