diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2015-01-15 18:10:03 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2015-02-19 18:25:50 +0000 |
commit | 6f997f16abba3b649d939f35abd7607076424fa9 (patch) | |
tree | fbd3df4509eea61f7becf382c09e333e96b44327 /t/app/controller/report_updates.t | |
parent | 61b0ea8be19a1db68d19508112afbe7a15814f36 (diff) |
Simplifed "confirmation-header" for success pages.
Diffstat (limited to 't/app/controller/report_updates.t')
-rw-r--r-- | t/app/controller/report_updates.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/app/controller/report_updates.t b/t/app/controller/report_updates.t index 64ed91ac0..832e6cb82 100644 --- a/t/app/controller/report_updates.t +++ b/t/app/controller/report_updates.t @@ -1393,7 +1393,7 @@ foreach my $test ( $mech->submit_form_ok( { with_fields => { reported => 'Yes' } } ); - $mech->content_contains( 'Thank you — you can' ); + $mech->content_contains( 'Thank you for updating this issue' ); $questionnaire = FixMyStreet::App->model( 'DB::Questionnaire' )->find( { problem_id => $report_id } @@ -1452,7 +1452,7 @@ for my $test ( anonymous => 0, answered => 1, path => '/report/update', - content => "You have successfully confirmed your update", + content => "Thank you for updating this issue", }, ) { @@ -1542,7 +1542,7 @@ for my $test ( $mech->submit_form_ok( { with_fields => { reported => 'Yes' } } ); - $mech->content_contains( 'Thank you — you can' ); + $mech->content_contains( 'Thank you for updating this issue' ); $questionnaire = FixMyStreet::App->model( 'DB::Questionnaire' )->find( { problem_id => $report_id } |