From 73da30893ca27c1be23c51774d45040c5613c33c Mon Sep 17 00:00:00 2001 From: Timur Karimov Date: Fri, 29 Nov 2024 18:42:07 +0100 Subject: [PATCH] fix tests --- client/checkout/utils/test/upe.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/checkout/utils/test/upe.test.js b/client/checkout/utils/test/upe.test.js index 7357840b51a..abcc55c79c9 100644 --- a/client/checkout/utils/test/upe.test.js +++ b/client/checkout/utils/test/upe.test.js @@ -610,7 +610,7 @@ describe( 'blocksShowLinkButtonHandler', () => { container = document.createElement( 'div' ); container.innerHTML = ` - + `; form.appendChild( container ); @@ -649,7 +649,7 @@ describe( 'blocksShowLinkButtonHandler', () => { } ); test( 'should show link button if email input is present', () => { - document.getElementById( 'email' ).value = 'admin@example.com'; + document.getElementById( 'billing_email' ).value = 'admin@example.com'; blocksShowLinkButtonHandler( autofill );