diff options
-rw-r--r-- | t/cobrand/zurich.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/cobrand/zurich.t b/t/cobrand/zurich.t index 6c88feac8..5d7ff8672 100644 --- a/t/cobrand/zurich.t +++ b/t/cobrand/zurich.t @@ -213,7 +213,7 @@ $mech->content_contains('Third Test'); $mech->content_contains('Weitergeleitet an: External Body'); FixMyStreet::App->model('DB::Problem')->send_reports('zurich'); $email = $mech->get_email; -like $email->header('Subject'), qr/Neue Meldung/, 'subject looks okay'; +like $email->header('Subject'), qr/Weitergeleitete Meldung/, 'subject looks okay'; like $email->header('To'), qr/external_body\@example.org/, 'to line looks correct'; like $email->body, qr/External Body/, 'body has right name'; unlike $email->body, qr/test\@example.com/, 'body does not contain email address'; @@ -232,7 +232,7 @@ $mech->content_contains('Third Test'); $mech->content_contains('Weitergeleitet an: External Body'); FixMyStreet::App->model('DB::Problem')->send_reports('zurich'); $email = $mech->get_email; -like $email->header('Subject'), qr/Neue Meldung/, 'subject looks okay'; +like $email->header('Subject'), qr/Weitergeleitete Meldung/, 'subject looks okay'; like $email->header('To'), qr/external_body\@example.org/, 'to line looks correct'; like $email->body, qr/External Body/, 'body has right name'; like $email->body, qr/test\@example.com/, 'body does contain email address'; |