From d20b5940037a83ee542369fdabac0ffc4747ad2e Mon Sep 17 00:00:00 2001 From: Barry Dwyer Date: Tue, 15 Oct 2024 11:01:42 +0200 Subject: [PATCH] Added fillers for blank lines to pass tests Core was changed to not show blank lines, which has broken tests here. Filling in the lines allows the tests to assume the same number of address lines --- e2e/testcases/death/helpers.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/testcases/death/helpers.ts b/e2e/testcases/death/helpers.ts index 9960b6014..df0e64b9c 100644 --- a/e2e/testcases/death/helpers.ts +++ b/e2e/testcases/death/helpers.ts @@ -306,8 +306,8 @@ const formatAddressLine = (address: typeof declaration.deceased.address) => [ address.number, address.street, address.residentialArea, - '', - '', + 'line 3', + 'line 4', 'URBAN', ...new Array(9).fill('') ]