Skip to content

Commit

Permalink
fix: mock provider
Browse files Browse the repository at this point in the history
  • Loading branch information
bigearsenal committed Jun 7, 2023
1 parent 8fc36b9 commit b952167
Showing 1 changed file with 19 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,25 @@ public actor MockStrigaLocalProvider: StrigaLocalProvider {
firstName: "Tester",
lastName: "Tester1",
email: "[email protected]",
mobile: StrigaUserDetailsResponse.Mobile(countryCode: "+84", number: "+84776059617"),
dateOfBirth: .init(year: 1984, month: 03, day: 12),
address: nil,
occupation: nil,
sourceOfFunds: nil,
placeOfBirth: nil,
mobile: .init(
countryCode: "+84",
number: "+84776059617"),
dateOfBirth: .init(
year: 1984,
month: 03,
day: 12
),
address: .init(
addressLine1: "Test ts str1",
addressLine2: nil,
city: "Ant",
postalCode: "12345",
state: "Ant",
country: "fr"
),
occupation: .accounting,
sourceOfFunds: .personalSavings,
placeOfBirth: "FRA",
KYC: StrigaKYC(
status: kyc,
mobileVerified: false
Expand Down

0 comments on commit b952167

Please sign in to comment.