From 50b3b308a7358a4a8cac142c8d36ee73515ececd Mon Sep 17 00:00:00 2001 From: Rob Garrison Date: Fri, 4 Oct 2024 08:22:03 -0500 Subject: [PATCH] Fix unit test failure (#32261) --- .../10182/tests/components/ConfirmationPagev2.unit.spec.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/applications/appeals/10182/tests/components/ConfirmationPagev2.unit.spec.jsx b/src/applications/appeals/10182/tests/components/ConfirmationPagev2.unit.spec.jsx index 30243c7ba55f..5fb6cf5905c7 100644 --- a/src/applications/appeals/10182/tests/components/ConfirmationPagev2.unit.spec.jsx +++ b/src/applications/appeals/10182/tests/components/ConfirmationPagev2.unit.spec.jsx @@ -81,11 +81,11 @@ describe('ConfirmationPageV2', () => { `You submitted the request on ${date}`, ); // expect($('va-loading-indicator', container)).to.exist; - const h2s = $$('h2', container); - expect(h2s.length).to.eq(4); + expect(h2s.length).to.eq(5); expect(h2s.map(el => el.textContent)).to.deep.equal([ // `You submitted your Board Appeal request on ${date}`, + 'Request a Board Appeal', // print only header 'Your Board Appeal request submission is in progress', 'What to expect next', 'How to contact us if you have questions',