about summary refs log tree commit homepage
path: root/xt/perf-msgview.t
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-02-15 09:46:33 +0000
committerEric Wong <e@yhbt.net>2020-02-16 00:06:21 +0000
commitaa0e67e63e58e0ee4fc3918bde25b9c04d48954a (patch)
tree789197f35d8601ba3ca79b3aca9a9464b13695aa /xt/perf-msgview.t
parent6940f5c8a8436a7a5c846d2079b9d8588872459f (diff)
downloadpublic-inbox-aa0e67e63e58e0ee4fc3918bde25b9c04d48954a.tar.gz
No point in passing something on stack only to stash it
into the $ctx which holds most other parameters used for
rendering the HTML.
Diffstat (limited to 'xt/perf-msgview.t')
-rw-r--r--xt/perf-msgview.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/xt/perf-msgview.t b/xt/perf-msgview.t
index f676ca93..3ea92ec6 100644
--- a/xt/perf-msgview.t
+++ b/xt/perf-msgview.t
@@ -37,13 +37,14 @@ my $n = 0;
 my $t = timeit(1, sub {
         my $obuf = '';
         $ctx->{obuf} = \$obuf;
+        $ctx->{mhref} = '../';
         while (<$fh>) {
                 ($cmt, $type) = split / /;
                 next if $type ne 'blob';
                 ++$n;
                 $str = $git->cat_file($cmt);
                 $mime = PublicInbox::MIME->new($str);
-                PublicInbox::View::multipart_text_as_html($mime, '../', $ctx);
+                PublicInbox::View::multipart_text_as_html($mime, $ctx);
                 $obuf = '';
         }
 });