about summary refs log tree commit homepage
path: root/t/view.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-04-15 20:50:56 +0000
committerEric Wong <e@80x24.org>2016-04-15 20:50:56 +0000
commitfdf9b900b8c35cb4259dbdf56400d44db61e7a9e (patch)
tree418244247703b6087aa12597feffad85394e8612 /t/view.t
parent474a987a2ba9183ceb9e143aeccdc49c7cb5f382 (diff)
downloadpublic-inbox-fdf9b900b8c35cb4259dbdf56400d44db61e7a9e.tar.gz
Quote-folding was a major design mistake pre-1.0.  Since this
project is still in its infancy and unlikely to be in wide
use at the moment, redirect the /f/ endpoints back to the
plain message.
Diffstat (limited to 't/view.t')
-rw-r--r--t/view.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/view.t b/t/view.t
index 1f464762..1a47416f 100644
--- a/t/view.t
+++ b/t/view.t
@@ -44,7 +44,7 @@ EOF
         my $html = PublicInbox::View::msg_html(undef, $mime);
 
         # ghetto tests
-        like($html, qr!<a\nhref="\.\./raw"!s, "raw link present");
+        like($html, qr!<a\nhref="raw"!s, "raw link present");
         like($html, qr/hello world\b/, "body present");
         like($html, qr/&gt; keep this inline/, "short quoted text is inline");
 }