aboutsummaryrefslogtreecommitdiffstats
path: root/t/app
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2016-03-11 09:40:10 +0000
committerMatthew Somerville <matthew@mysociety.org>2016-03-11 09:40:10 +0000
commit0e33fbe0e8eacde6053ba518d8fcfb9438cc0942 (patch)
treed14aee20b4f105f2cc65f076de35c209571c9f6c /t/app
parentcf8a7bbb613a00057e450a7249781ae22b18a2dd (diff)
Fix test that fetched page removed in last commit.
Diffstat (limited to 't/app')
-rw-r--r--t/app/controller/about.t4
1 files changed, 2 insertions, 2 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');