aboutsummaryrefslogtreecommitdiffstats
path: root/t/app/controller/page_not_found.t
diff options
context:
space:
mode:
Diffstat (limited to 't/app/controller/page_not_found.t')
-rw-r--r--t/app/controller/page_not_found.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/app/controller/page_not_found.t b/t/app/controller/page_not_found.t
index 9c8d7e5a6..05e983109 100644
--- a/t/app/controller/page_not_found.t
+++ b/t/app/controller/page_not_found.t
@@ -13,7 +13,7 @@ my $mech = Test::WWW::Mechanize::Catalyst->new;
$mech->get_ok('/');
# get 404 page
-my $path_to_404 = '/bad/path/page_not_found';
+my $path_to_404 = '/bad/path/page_error_404_not_found';
my $res = $mech->get($path_to_404);
ok !$res->is_success(), "want a bad response";
is $res->code, 404, "got 404";