From 801e0b6f9ff495077f57110be4967d5c0aae88f3 Mon Sep 17 00:00:00 2001 From: Sam Date: Wed, 14 Sep 2022 14:59:49 +0100 Subject: [PATCH] Corrected typo in page title + heading (#870) --- app/views/logs/csv_confirmation.html.erb | 4 ++-- spec/requests/lettings_logs_controller_spec.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/views/logs/csv_confirmation.html.erb b/app/views/logs/csv_confirmation.html.erb index a5717cae9..90f90813c 100644 --- a/app/views/logs/csv_confirmation.html.erb +++ b/app/views/logs/csv_confirmation.html.erb @@ -1,7 +1,7 @@ -<% content_for :title, "We've sending you an email" %> +<% content_for :title, "We’re sending you an email" %>
- <%= govuk_panel(title_text: "We're sending you an email") %> + <%= govuk_panel(title_text: "We’re sending you an email") %>

It should arrive in a few minutes, but it could take longer.

diff --git a/spec/requests/lettings_logs_controller_spec.rb b/spec/requests/lettings_logs_controller_spec.rb index 20218824e..8aafd30dc 100644 --- a/spec/requests/lettings_logs_controller_spec.rb +++ b/spec/requests/lettings_logs_controller_spec.rb @@ -783,7 +783,7 @@ RSpec.describe LettingsLogsController, type: :request do it "confirms that the user will receive an email with the requested CSV" do get "/lettings-logs/csv-confirmation" - expect(CGI.unescape_html(response.body)).to include("We're sending you an email") + expect(CGI.unescape_html(response.body)).to include("We’re sending you an email") end end end