-
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.
Vega 2656 add appointment type and new status (#277)
* VEGA-2656 add appointment type and new status to Attorney struct * Update unit tests * make appointmentType optional * Revert counting attorneys by appointmentType
- Loading branch information
Showing
6 changed files
with
45 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,11 +26,12 @@ func makeAttorney() shared.Attorney { | |
FirstNames: "Sharonda", | ||
LastName: "Graciani", | ||
}, | ||
Address: validAddress, | ||
Email: "[email protected]", | ||
Channel: shared.ChannelOnline, | ||
DateOfBirth: newDate("1977-10-30"), | ||
Status: shared.AttorneyStatusActive, | ||
Address: validAddress, | ||
AppointmentType: shared.AppointmentTypeOriginal, | ||
Email: "[email protected]", | ||
Channel: shared.ChannelOnline, | ||
DateOfBirth: newDate("1977-10-30"), | ||
Status: shared.AttorneyStatusActive, | ||
} | ||
} | ||
|
||
|
@@ -41,11 +42,12 @@ func makeReplacementAttorney() shared.Attorney { | |
FirstNames: "Sharonda", | ||
LastName: "Graciani", | ||
}, | ||
Address: validAddress, | ||
Email: "[email protected]", | ||
Channel: shared.ChannelOnline, | ||
DateOfBirth: newDate("1977-10-30"), | ||
Status: shared.AttorneyStatusReplacement, | ||
Address: validAddress, | ||
AppointmentType: shared.AppointmentTypeReplacement, | ||
Email: "[email protected]", | ||
Channel: shared.ChannelOnline, | ||
DateOfBirth: newDate("1977-10-30"), | ||
Status: shared.AttorneyStatusReplacement, | ||
} | ||
} | ||
|
||
|
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