-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MLPAB-2231 Store independent witness and authorised signatory if given (
#258)
- Loading branch information
Showing
7 changed files
with
87 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,8 @@ func makeAttorney() shared.Attorney { | |
UID: "b99af83d-5b6c-44f7-8c03-14004699bdb9", | ||
FirstNames: "Sharonda", | ||
LastName: "Graciani", | ||
Address: validAddress, | ||
}, | ||
Address: validAddress, | ||
Email: "[email protected]", | ||
Channel: shared.ChannelOnline, | ||
DateOfBirth: newDate("1977-10-30"), | ||
|
@@ -40,8 +40,8 @@ func makeReplacementAttorney() shared.Attorney { | |
UID: "b99af83d-5b6c-44f7-8c03-14004699bdb9", | ||
FirstNames: "Sharonda", | ||
LastName: "Graciani", | ||
Address: validAddress, | ||
}, | ||
Address: validAddress, | ||
Email: "[email protected]", | ||
Channel: shared.ChannelOnline, | ||
DateOfBirth: newDate("1977-10-30"), | ||
|
@@ -55,8 +55,8 @@ func makeCertificateProvider() shared.CertificateProvider { | |
UID: "b99af83d-5b6c-44f7-8c03-14004699bdb9", | ||
FirstNames: "Some", | ||
LastName: "Person", | ||
Address: validAddress, | ||
}, | ||
Address: validAddress, | ||
Email: "[email protected]", | ||
Channel: shared.ChannelOnline, | ||
Phone: "077777", | ||
|
@@ -84,8 +84,8 @@ func makeLpaWithDonorAndActors() shared.LpaInit { | |
UID: "b99af83d-5b6c-44f7-8c03-14004699bdb9", | ||
FirstNames: "Otto", | ||
LastName: "Boudreau", | ||
Address: validAddress, | ||
}, | ||
Address: validAddress, | ||
ContactLanguagePreference: shared.LangEn, | ||
DateOfBirth: newDate("1956-08-08"), | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,14 +93,14 @@ func TestValidateUpdateCertificateProviderSign(t *testing.T) { | |
lpa: &shared.Lpa{ | ||
LpaInit: shared.LpaInit{ | ||
CertificateProvider: shared.CertificateProvider{ | ||
Person: shared.Person{Address: shared.Address{ | ||
Address: shared.Address{ | ||
Line1: "Line 1", | ||
Line2: "Line 2", | ||
Line3: "Line 3", | ||
Town: "Town", | ||
Postcode: "ABC 123", | ||
Country: "GB", | ||
}}, | ||
}, | ||
SignedAt: &yesterday, | ||
ContactLanguagePreference: shared.LangEn, | ||
Email: "[email protected]", | ||
|