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(); }); })