X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fview.t;h=4cee4395f7ce88926d797579d65ef5289525e41f;hb=e358bd7a3833f8c5bf9db57d228888f9c5f3692e;hp=8a898febc3f983433ad3d78c692fafbfa669fe87;hpb=073efc43a68cbd6852939ccaf644dbb380cdc143;p=public-inbox.git diff --git a/t/view.t b/t/view.t index 8a898feb..4cee4395 100644 --- a/t/view.t +++ b/t/view.t @@ -25,6 +25,7 @@ my $ctx = { -inbox => Plack::Util::inline_object( name => 'test', search => sub { undef }, + base_url => sub { 'http://example.com/' }, cloneurl => sub {[]}, description => sub { '' }), }; @@ -34,7 +35,8 @@ sub msg_html ($) { my ($mime) = @_; my $s = ''; - my $body = PublicInbox::View::msg_html($ctx, $mime); + my $r = PublicInbox::View::msg_html($ctx, $mime); + my $body = $r->[2]; while (defined(my $buf = $body->getline)) { $s .= $buf; }