summaryrefslogtreecommitdiffstats
path: root/t/path_info_escaped.t
diff options
context:
space:
mode:
Diffstat (limited to 't/path_info_escaped.t')
-rw-r--r--t/path_info_escaped.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/path_info_escaped.t b/t/path_info_escaped.t
index 28e712c..3bd4f62 100644
--- a/t/path_info_escaped.t
+++ b/t/path_info_escaped.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('my ' . Dumper([ $req->uri, $req->parameters ]));
+ $res->content('my ' . Dumper([ $req->uri, $req->parameters ]));
return $res->finalize;
};