diff options
Diffstat (limited to 't')
-rw-r--r-- | t/app/controller/report_display.t | 2 | ||||
-rw-r--r-- | t/cobrand/zurich.t | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/t/app/controller/report_display.t b/t/app/controller/report_display.t index a3c4edfc7..b4d427428 100644 --- a/t/app/controller/report_display.t +++ b/t/app/controller/report_display.t @@ -103,7 +103,7 @@ subtest "Zurich unconfirmeds are 200" => sub { $mech->host( 'zurich.fixmystreet.com' ); ok $report->update( { state => 'unconfirmed' } ), 'unconfirm report'; $mech->get_ok("/report/$report_id"); - $mech->content_contains( 'This report is awaiting moderation' ); + $mech->content_contains( 'Überprüfung ausstehend' ); ok $report->update( { state => 'confirmed' } ), 'confirm report again'; $mech->host( 'www.fixmystreet.com' ); }; diff --git a/t/cobrand/zurich.t b/t/cobrand/zurich.t index 686be1e79..f354f0da4 100644 --- a/t/cobrand/zurich.t +++ b/t/cobrand/zurich.t @@ -39,7 +39,7 @@ my @reports = $mech->create_problems_for_body( 1, 2, 'Test', { my $report = $reports[0]; $mech->get_ok( '/report/' . $report->id ); -$mech->content_contains('moderation'); +$mech->content_contains('Überprüfung ausstehend'); # Check logging in to deal with this report $mech->get_ok( '/admin' ); |