about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/plack.t2
-rw-r--r--t/view.t8
2 files changed, 5 insertions, 5 deletions
diff --git a/t/plack.t b/t/plack.t
index 3bc4433f..85dd337d 100644
--- a/t/plack.t
+++ b/t/plack.t
@@ -98,7 +98,7 @@ EOF
                 my $res = $cb->(GET($pfx . '/atom.xml'));
                 is(200, $res->code, 'success response received for atom');
                 like($res->content,
-                        qr!link href="\Q$pfx\E/m/blah%40example\.com\.html"!,
+                        qr!link\s+href="\Q$pfx\E/m/blah%40example\.com\.html"!s,
                         'atom feed generated correct URL');
         });
 }
diff --git a/t/view.t b/t/view.t
index 91ba1686..18517933 100644
--- a/t/view.t
+++ b/t/view.t
@@ -44,19 +44,19 @@ EOF
         my $html = PublicInbox::View->msg_html($s);
 
         # ghetto tests
-        like($html, qr!<a href="\.\./m/hello%40!s, "MID link present");
+        like($html, qr!<a\nhref="\.\./m/hello%40!s, "MID link present");
         like($html, qr/hello world\b/, "body present");
         like($html, qr/&gt; keep this inline/, "short quoted text is inline");
-        like($html, qr/<a name=[^>]+>&gt; Long and wordy/,
+        like($html, qr/<a\nname=[^>]+>&gt; Long and wordy/,
                 "long quoted text is anchored");
 
         # short page
         my $pfx = "http://example.com/test/f";
         my $short = PublicInbox::View->msg_html($s, $pfx);
-        like($short, qr!<a href="hello%40!s, "MID link present");
+        like($short, qr!<a\nhref="hello%40!s, "MID link present");
         like($short, qr/\n&gt; keep this inline/,
                 "short quoted text is inline");
-        like($short, qr/<a href="\Q$pfx\E#[^>]+>Long and wordy/,
+        like($short, qr/<a\nhref="\Q$pfx\E#[^>]+>Long and wordy/,
                 "long quoted text is made into a link");
         ok(length($short) < length($html), "short page is shorter");
 }