diff --git a/app/components/Views/SmartTransactionsOptInModal/SmartTransactionsOptInModal.test.tsx b/app/components/Views/SmartTransactionsOptInModal/SmartTransactionsOptInModal.test.tsx index 512e8fccf08..7a8a685c7d4 100644 --- a/app/components/Views/SmartTransactionsOptInModal/SmartTransactionsOptInModal.test.tsx +++ b/app/components/Views/SmartTransactionsOptInModal/SmartTransactionsOptInModal.test.tsx @@ -67,13 +67,10 @@ describe('SmartTransactionsOptInModal', () => { const description1 = getByText(strings('whats_new.stx.description_1')); expect(description1).toBeDefined(); - const description2 = getByText(strings('whats_new.stx.description_2')); - expect(description2).toBeDefined(); - - const description3 = getByText(strings('whats_new.stx.description_3'), { + const description2 = getByText(strings('whats_new.stx.description_2'), { exact: false, }); - expect(description3).toBeDefined(); + expect(description2).toBeDefined(); const primaryButton = getByText(strings('whats_new.stx.primary_button')); expect(primaryButton).toBeDefined();