diff options
author | Struan Donald <struan@exo.org.uk> | 2011-05-13 10:21:56 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2011-05-13 10:21:56 +0100 |
commit | acec961ab9961b69e43a7cc95616577021bbd47d (patch) | |
tree | 3f9b6734ccc9c0b22e193fc786e49ef2e82ed58a | |
parent | a6aeadb959c6eb5e8e87f0a79ecd5ff53e3a7e56 (diff) |
fix contact page title
-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> |