From 36951dcb4bda760e5dcde102bb68c826ffad0c42 Mon Sep 17 00:00:00 2001 From: Nick Davis Date: Thu, 19 Dec 2024 11:19:04 +0000 Subject: [PATCH] fix test broken by merge of main into branch --- .../Service/Lpa/FindActorInLpaTest.php | 41 ------------------- 1 file changed, 41 deletions(-) diff --git a/service-api/app/test/AppTest/Service/Lpa/FindActorInLpaTest.php b/service-api/app/test/AppTest/Service/Lpa/FindActorInLpaTest.php index c63f6977b0..7c7954cb91 100644 --- a/service-api/app/test/AppTest/Service/Lpa/FindActorInLpaTest.php +++ b/service-api/app/test/AppTest/Service/Lpa/FindActorInLpaTest.php @@ -412,24 +412,6 @@ private static function activeAttorneyFixture(): SiriusLpaAttorney ); } - public static function nullDOBAttorneyFixtureOld(): SiriusPerson - { - return new SiriusPerson( - [ - 'uId' => '7000000055555', - 'dob' => null, - 'firstname' => 'Testering', - 'surname' => 'T’esting', - 'addresses' => [ - [ - 'postcode' => 'Ab1 2Cd', - ], - ], - 'systemStatus' => true, - ] - ); - } - public static function nullDOBAttorneyFixture(): SiriusLpaAttorney { return new SiriusLpaAttorney( @@ -511,27 +493,4 @@ public static function nullDOBAttorneyFixtureOld(): SiriusPerson new Logger('test-output'), ); } - - public static function nullDOBAttorneyFixture(): SiriusLpaAttorney - { - return new SiriusLpaAttorney( - addressLine1: null, - addressLine2: null, - addressLine3: null, - country: null, - county: null, - dob: null, - email: null, - firstname: 'Testering', - id: '7', - middlenames: null, - otherNames: null, - postcode: 'PY1 3Kd', - surname: 'Person', - systemStatus: null, - town: null, - type: null, - uId: '700000001111' - ); - } }