summaryrefslogtreecommitdiffstats
path: root/t/path_info.t
diff options
context:
space:
mode:
Diffstat (limited to 't/path_info.t')
-rw-r--r--t/path_info.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/path_info.t b/t/path_info.t
index bab50b9..d5cbbcc 100644
--- a/t/path_info.t
+++ b/t/path_info.t
@@ -12,7 +12,7 @@ my $path_app = sub {
my $req = Web::Request->new_from_env(shift);
my $res = $req->new_response(status => 200);
$res->content_type('text/plain');
- $res->body($req->path_info);
+ $res->content($req->path_info);
return $res->finalize;
};