diff --git a/src/tests/unit/__snapshots__/contact-info.test.tsx.snap b/src/tests/unit/__snapshots__/contact-info.test.tsx.snap index c2591cf8f7..42e2dda746 100644 --- a/src/tests/unit/__snapshots__/contact-info.test.tsx.snap +++ b/src/tests/unit/__snapshots__/contact-info.test.tsx.snap @@ -2,7 +2,7 @@ exports[`ContactInfoInputs > Should NOT wrap the input fields if it is NOT inline 1`] = `

One input component @@ -16,7 +16,7 @@ exports[`ContactInfoInputs > Should NOT wrap the input fields if it is NOT inlin exports[`ContactInfoInputs > Should wrap the input fields if it is inline 1`] = `

{ it("Should wrap the input fields if it is inline", async () => { const { getByTestId } = render( - +

One input component

Another input component

); - const contactInfoInputs = getByTestId("contact-info-input"); + const contactInfoInputs = getByTestId("contact-info-input-inline"); expect(contactInfoInputs).toMatchSnapshot(); }); it("Should NOT wrap the input fields if it is NOT inline", async () => { const { getByTestId } = render( - +

One input component

Another input component

); - const contactInfoInputs = getByTestId("contact-info-input-inline"); + const contactInfoInputs = getByTestId("contact-info-input"); expect(contactInfoInputs).toMatchSnapshot(); });