diff --git a/lib/AccountManager/App/Status.pm b/lib/AccountManager/App/Status.pm
index e4e680e402f420c1e0bf10d15b257cdd4090aaa1..9bb1eafd8f70ea189641a424224a68eb423201af 100644
--- a/lib/AccountManager/App/Status.pm
+++ b/lib/AccountManager/App/Status.pm
@@ -36,7 +36,7 @@ sub run {
     if (!$config->{status}) {
         $self->render(
             status => 403,
-            test   => "unauthorized access"
+            text   => "unauthorized access"
         );
         return;
     }
@@ -47,7 +47,7 @@ sub run {
     if (none { network_contains($_, $client_ip) } @allowed_ips) {
         $self->render(
             status => 403,
-            test   => "unauthorized access"
+            text   => "unauthorized access"
         );
         return;
     }