From 707e89fd38d02829aa4a075e46ac7bbf1dba8fe0 Mon Sep 17 00:00:00 2001 From: Sofia Leon Date: Wed, 17 Jul 2024 12:27:33 -0500 Subject: [PATCH] update test --- test/test.download.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/test.download.ts b/test/test.download.ts index cd6e1abd45..7e8ef6ee6b 100644 --- a/test/test.download.ts +++ b/test/test.download.ts @@ -79,8 +79,8 @@ describe(__filename, () => { it('should download the discovery docs', async () => { const scopes = [ - nock('https://www.googleapis.com') - .get('/discovery/v1/apis/') + nock('https://raw.githubusercontent.com/googleapis') + .get('/discovery-artifact-manager/master/discoveries/index.json/') .replyWithFile(200, fakeIndexPath, { 'Content-Type': 'application/json', }), @@ -99,8 +99,8 @@ describe(__filename, () => { it('should ignore changes to schemas that only have revision changes', async () => { const scopes = [ - nock('https://www.googleapis.com') - .get('/discovery/v1/apis/') + nock('https://raw.githubusercontent.com/googleapis') + .get('/discovery-artifact-manager/master/discoveries/index.json/') .replyWithFile(200, fakeIndexPath, { 'Content-Type': 'application/json', }),