diff --git a/packages/react-native-web/src/exports/Image/__tests__/__snapshots__/index-test.js.snap b/packages/react-native-web/src/exports/Image/__tests__/__snapshots__/index-test.js.snap
index 04b41e3efa..91a04f2649 100644
--- a/packages/react-native-web/src/exports/Image/__tests__/__snapshots__/index-test.js.snap
+++ b/packages/react-native-web/src/exports/Image/__tests__/__snapshots__/index-test.js.snap
@@ -255,7 +255,7 @@ exports[`components/Image prop "source" is correctly updated when missing in ini
`;
-exports[`components/Image prop "source" is not set immediately if the image has not already been loaded 1`] = `
+exports[`components/Image prop "source" is set immediately if the image has already been loaded 1`] = `
@@ -272,36 +272,36 @@ exports[`components/Image prop "source" is not set immediately if the image has
`;
-exports[`components/Image prop "source" is set immediately if the image has already been loaded 1`] = `
+exports[`components/Image prop "source" is set immediately if the image has already been loaded 2`] = `
`;
-exports[`components/Image prop "source" is set immediately if the image has already been loaded 2`] = `
+exports[`components/Image prop "source" is set immediately if the image has not already been loaded there is no default source 1`] = `
`;
diff --git a/packages/react-native-web/src/exports/Image/__tests__/index-test.js b/packages/react-native-web/src/exports/Image/__tests__/index-test.js
index 3be0434e2e..de6027c2c5 100644
--- a/packages/react-native-web/src/exports/Image/__tests__/index-test.js
+++ b/packages/react-native-web/src/exports/Image/__tests__/index-test.js
@@ -252,8 +252,8 @@ describe('components/Image', () => {
});
});
- test('is not set immediately if the image has not already been loaded', () => {
- const uri = 'https://google.com/favicon.ico';
+ test('is set immediately if the image has not already been loaded there is no default source', () => {
+ const uri = 'https://google.com/not-yet-loaded-image.ico';
const source = { uri };
const { container } = render();
expect(container.firstChild).toMatchSnapshot();