From ae2ade868088990f28d2af62b9af9a21a23e6f5f Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Wed, 6 Jul 2016 03:23:51 +0200 Subject: [PATCH] updated test --- test/test.js | 2 +- test/test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 70feddb..daecf91 100644 --- a/test/test.js +++ b/test/test.js @@ -30,7 +30,7 @@ describe("cert", function () { }); it("should get a valid certificate", function (done) { this.timeout(120000); - testCert.getDomainCert("hello1.bleu.de").then(function () { + testCert.getDomainCert("hello2.bleu.de").then(function () { done(); }); }); diff --git a/test/test.ts b/test/test.ts index 0ed5fe5..f2004c8 100644 --- a/test/test.ts +++ b/test/test.ts @@ -34,7 +34,7 @@ describe("cert",function(){ }) it("should get a valid certificate",function(done){ this.timeout(120000); - testCert.getDomainCert("hello1.bleu.de").then(() => { + testCert.getDomainCert("hello2.bleu.de").then(() => { done(); }); })