re-use new releases assets url path
Some checks failed
Main workflow / Run (ubuntu-latest) (push) Failing after 33s
Main workflow / Run (macos-latest) (push) Failing after 3s
Main workflow / Run (windows-latest) (push) Has been cancelled

This commit is contained in:
Alif Rachmawadi
2021-06-14 02:47:16 +00:00
parent a471b152dc
commit 4389e6cbc6
7 changed files with 7 additions and 7 deletions

View File

@@ -23,7 +23,7 @@ describe('installer tests', () => {
beforeEach(() => {
const platform = release.getPlatform();
nock('https://storage.googleapis.com', {allowUnmocked: true})
.get(`/flutter_infra/releases/releases_${platform}.json`)
.get(`/flutter_infra_release/releases/releases_${platform}.json`)
.replyWithFile(200, path.join(dataDir, `releases_${platform}.json`));
});