diff --git a/app/views/admin/tasks/provider_verification.html.erb b/app/views/admin/tasks/provider_verification.html.erb index a09b0baf3c..4f3eff60ae 100644 --- a/app/views/admin/tasks/provider_verification.html.erb +++ b/app/views/admin/tasks/provider_verification.html.erb @@ -50,13 +50,21 @@ <% else %>

- This task has not yet been completed by the provider + This task has not been sent to the provider yet.

- <%= govuk_button_to( - "Resend provider verification email", - admin_claim_further_education_payments_provider_verification_emails_path(@claim) - ) %> +
+

+ You need to check the matching details and confirm if this is a + duplicate claim. If it isn't a duplicate claim, send the verification + request to the provider. +

+ <%= govuk_button_to( + "Send provider verification request", + admin_claim_further_education_payments_provider_verification_emails_path(@claim), + class: "govuk-!-margin-bottom-0" + ) %> +
<% end %> 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 8bdc8918d3..4ad7846782 100644 --- a/spec/features/admin/admin_claim_further_education_payments_spec.rb +++ b/spec/features/admin/admin_claim_further_education_payments_spec.rb @@ -42,11 +42,11 @@ click_on "Confirm the provider verification" expect(page).to have_content( - "This task has not yet been completed by the provider" + "This task has not been sent to the provider yet." ) perform_enqueued_jobs do - click_on "Resend provider verification email" + click_on "Send provider verification request" end provider_email_address = claim.school.eligible_fe_provider.primary_key_contact_email_address