diff options
-rw-r--r-- | t/app/controller/contact.t | 2 | ||||
-rw-r--r-- | templates/web/default/contact/index.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/t/app/controller/contact.t b/t/app/controller/contact.t index a15f08118..2ddc279bc 100644 --- a/t/app/controller/contact.t +++ b/t/app/controller/contact.t @@ -7,8 +7,8 @@ use FixMyStreet::TestMech; my $mech = FixMyStreet::TestMech->new; - $mech->get_ok( '/contact' ); +$mech->title_like( qr/Contact Us/ ); $mech->content_contains( "We'd love to hear what you think about this site" ); done_testing(); diff --git a/templates/web/default/contact/index.html b/templates/web/default/contact/index.html index 0d7cf2e9c..5d7dfea7d 100644 --- a/templates/web/default/contact/index.html +++ b/templates/web/default/contact/index.html @@ -1,4 +1,4 @@ -[% INCLUDE 'header.html', title => loc('Create a report') %] +[% INCLUDE 'header.html', title => loc('Contact Us') %] <h1>[% loc('Contact the team') %]</h1> |