Remove Double Address Verification from jobs - Deploy First#9854
Remove Double Address Verification from jobs - Deploy First#9854JackRyan1989 merged 5 commits intomainfrom
Conversation
| resolution_proofer.proof(applicant_pii) | ||
| end | ||
| end | ||
| # rubocop:enable Lint/UnusedMethodArgument |
There was a problem hiding this comment.
is the linter requiring this b/c the default value of ipp_enrollment_in_progress is now true?
There was a problem hiding this comment.
Actually no. It's required because we're passing in double_address_verification as an argument, but not using that value in the method.
There was a problem hiding this comment.
ahh ok thank you for clarifying that!
If Steps 1 and 2 are meant to be separate deploys, should the changes here include both, or should they be split across two pull requests? |
Good q! My read of the text in the parens in the handbook:
is that since I have a default value set for double_address_verification in resolution_proofing_job, we can combine 1 and 2. Let me know if you think my read is incorrect or if I'm not adequately setting a default value. @aduth |
|
Ah! I missed the parenthesized text. In that case, I think it should be okay 👍 |
🎫 Ticket
🛠 Summary of changes
This PR compliments #9829.
The changes here should address steps 1 & 2 when removing a value from jobs:
https://handbook.login.gov/articles/manage-50-50-state.html#remove-an-argument-from-a-job-perform-method
📜 Testing Plan
Tests are already aware of the
ipp_enrollment_in_progressvariable, so no changes to tests are required. All should pass.