From dae6f76eea9e0572be5196fc59f29252fdabc867 Mon Sep 17 00:00:00 2001 From: Phil Lee Date: Fri, 18 Oct 2024 12:46:53 +0100 Subject: [PATCH] increase FE provider verification by 1 week --- app/models/policies/further_education_payments.rb | 2 +- .../admin/admin_claim_further_education_payments_spec.rb | 6 +++--- .../claim_submission_form_spec.rb | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/models/policies/further_education_payments.rb b/app/models/policies/further_education_payments.rb index 2d76bd7e19..3a203b11cc 100644 --- a/app/models/policies/further_education_payments.rb +++ b/app/models/policies/further_education_payments.rb @@ -75,7 +75,7 @@ def notify_reply_to_id end def verification_due_date_for_claim(claim) - (claim.created_at + 2.weeks).to_date + (claim.created_at + 3.weeks).to_date end def verification_chase_due_date_for_claim(claim) diff --git a/spec/features/admin/admin_claim_further_education_payments_spec.rb b/spec/features/admin/admin_claim_further_education_payments_spec.rb index 2a2c69383e..0d758c20f4 100644 --- a/spec/features/admin/admin_claim_further_education_payments_spec.rb +++ b/spec/features/admin/admin_claim_further_education_payments_spec.rb @@ -76,7 +76,7 @@ claimant_name: "Edna Krabappel", claim_reference: "AB123456", claim_submission_date: "1 August 2024", - verification_due_date: "15 August 2024", + verification_due_date: "22 August 2024", verification_url: Journeys::FurtherEducationPayments::Provider::SlugSequence.verify_claim_url(claim) ) ) @@ -156,7 +156,7 @@ claimant_name: "Edna Krabappel", claim_reference: "AB123456", claim_submission_date: "1 August 2024", - verification_due_date: "15 August 2024", + verification_due_date: "22 August 2024", verification_url: Journeys::FurtherEducationPayments::Provider::SlugSequence.verify_claim_url(claim) ) ) @@ -229,7 +229,7 @@ claimant_name: "Edna Krabappel", claim_reference: "AB123456", claim_submission_date: "1 August 2024", - verification_due_date: "15 August 2024", + verification_due_date: "22 August 2024", verification_url: Journeys::FurtherEducationPayments::Provider::SlugSequence.verify_claim_url(claim) ) ) diff --git a/spec/forms/journeys/further_education_payments/claim_submission_form_spec.rb b/spec/forms/journeys/further_education_payments/claim_submission_form_spec.rb index c979deaf78..bae162eeed 100644 --- a/spec/forms/journeys/further_education_payments/claim_submission_form_spec.rb +++ b/spec/forms/journeys/further_education_payments/claim_submission_form_spec.rb @@ -92,7 +92,7 @@ claimant_name: [answers.first_name, answers.surname].join(" "), claim_reference: claim.reference, claim_submission_date: "1 October 2024", - verification_due_date: "15 October 2024", + verification_due_date: "22 October 2024", verification_url: Journeys::FurtherEducationPayments::Provider::SlugSequence.verify_claim_url(claim) ) )