diff options
-rw-r--r-- | t/app/controller/about.t | 4 | ||||
-rw-r--r-- | templates/web/base/about/about-en-gb.html | 9 |
2 files changed, 2 insertions, 11 deletions
diff --git a/t/app/controller/about.t b/t/app/controller/about.t index 750983f24..6a082a2ff 100644 --- a/t/app/controller/about.t +++ b/t/app/controller/about.t @@ -7,8 +7,8 @@ use Test::WWW::Mechanize::Catalyst 'FixMyStreet::App'; ok( my $mech = Test::WWW::Mechanize::Catalyst->new, 'Created mech object' ); # check that we can get the page -$mech->get_ok('/about'); -$mech->content_like(qr{About us ::\s+FixMyStreet}); +$mech->get_ok('/faq'); +$mech->content_like(qr{Frequently Asked Questions ::\s+FixMyStreet}); $mech->content_contains('html class="no-js" lang="en-gb"'); $mech->get_ok('/privacy'); diff --git a/templates/web/base/about/about-en-gb.html b/templates/web/base/about/about-en-gb.html deleted file mode 100644 index 9c319f051..000000000 --- a/templates/web/base/about/about-en-gb.html +++ /dev/null @@ -1,9 +0,0 @@ -[% INCLUDE 'header.html', title => loc('About us') %] - -<h1>[% loc('About us') %]</h1> - -<h2>FixMyStreet.com</h2> - -[%# FIXME - put in blurb here %] - -[% INCLUDE 'footer.html' %] |