From 25fb9d10231463c5cdddfaf713a16a75c04c2fa1 Mon Sep 17 00:00:00 2001 From: Lennart Date: Thu, 11 Aug 2022 08:39:02 +0200 Subject: [PATCH] chore: Fix pipeline tests (#36363) --- .../gatsby-pipeline/__tests__/fetch-remote-file/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/integration-tests/gatsby-pipeline/__tests__/fetch-remote-file/index.js b/integration-tests/gatsby-pipeline/__tests__/fetch-remote-file/index.js index 17fb5616a3fe6..378a9f5159998 100644 --- a/integration-tests/gatsby-pipeline/__tests__/fetch-remote-file/index.js +++ b/integration-tests/gatsby-pipeline/__tests__/fetch-remote-file/index.js @@ -18,6 +18,7 @@ describe(`fetch-remote-file`, () => { }) }, 60 * 1000) + // If a test fails here, it's possible that the image changed on Unsplash it("should have the correct md5", async () => { expect( await md5File( @@ -45,6 +46,6 @@ describe(`fetch-remote-file`, () => { "public/images/fb673e75e9534b3cc2d2e24085386d48/photoC.jpg" ) ) - ).toEqual("4ba953ba27236727d7abe7d5b8916432") + ).toEqual("c3d2efe723cd58311db404fd1b1f76a7") }) })