From 23883abc2081f0adebd14fab2c76c4458f6d36ed Mon Sep 17 00:00:00 2001 From: "bobo.yang" Date: Mon, 24 Jul 2023 00:11:56 +0800 Subject: [PATCH] Update API endpoint in apiKey.test.ts - Replace old endpoint with the new 'https://api.devchat.ai/v1' endpoint. --- test/util/apiKey.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/util/apiKey.test.ts b/test/util/apiKey.test.ts index 5a0e4b3..818f9ed 100644 --- a/test/util/apiKey.test.ts +++ b/test/util/apiKey.test.ts @@ -59,7 +59,7 @@ describe('ApiKeyManager', () => { sinon.stub(UiUtilWrapper, 'getConfiguration').returns(undefined); const endPoint = ApiKeyManager.getEndPoint('DC.key'); - expect(endPoint).to.equal('https://xw4ymuy6qj.ap-southeast-1.awsapprunner.com/api/v1'); + expect(endPoint).to.equal('https://api.devchat.ai/v1'); }); });