diff options
author | Matthew Somerville <matthew@mysociety.org> | 2014-11-18 12:25:18 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2014-11-19 18:10:17 +0000 |
commit | 5fce15c329490e0dbfb539ce75f08ee07436de61 (patch) | |
tree | 1472b9417b8bdd5cc127080ffb6b8805df0d641e /t/app | |
parent | 77dd10ba87673dff3d2bf55d12ec67343ad29bd3 (diff) |
Don't generate unused special templates/po files.
Diffstat (limited to 't/app')
-rw-r--r-- | t/app/controller/about.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/app/controller/about.t b/t/app/controller/about.t index b3562ea04..fb0744d6a 100644 --- a/t/app/controller/about.t +++ b/t/app/controller/about.t @@ -17,13 +17,13 @@ FixMyStreet::override_config { # check that geting the page as EHA produces a different page ok $mech->host("reportemptyhomes.co.uk"), 'change host to reportemptyhomes'; $mech->get_ok('/about'); - $mech->content_like(qr{About us ::\s+Report Empty Homes}); + $mech->content_like(qr{About us ::}); $mech->content_contains('html lang="en-gb"'); # check that geting the page as EHA in welsh produces a different page ok $mech->host("cy.reportemptyhomes.co.uk"), 'host to cy.reportemptyhomes'; $mech->get_ok('/about'); - $mech->content_like(qr{Amdanom ni ::\s+Rhoi gwybod am eiddo gwag}); + $mech->content_like(qr{Amdanom ni ::}); $mech->content_contains('html lang="cy"'); }; |