about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/imapd.t2
-rw-r--r--t/nntpd.t2
2 files changed, 2 insertions, 2 deletions
diff --git a/t/imapd.t b/t/imapd.t
index 0583dfdd..f1b498a7 100644
--- a/t/imapd.t
+++ b/t/imapd.t
@@ -507,7 +507,7 @@ SKIP: {
         $ii->close;
         PublicInbox::DS->Reset;
         seek($err, 0, 0);
-        my @err = grep(!/^I:/, <$err>);
+        my @err = grep(!/^(?:I:|#)/, <$err>);
         is(@err, 0, 'no warnings/errors from -watch'.join(' ', @err));
 
         if ($ENV{TEST_KILL_IMAPD}) { # not sure how reliable this test can be
diff --git a/t/nntpd.t b/t/nntpd.t
index 18aaccbe..16a2ab76 100644
--- a/t/nntpd.t
+++ b/t/nntpd.t
@@ -459,7 +459,7 @@ sub test_watch {
         $cfg->each_inbox(sub { shift->unsubscribe_unlock('ident') });
         $ii->close;
         PublicInbox::DS->Reset;
-        my @err = grep(!/^I:/, <$err>);
+        my @err = grep(!/^(?:I:|#)/, <$err>);
         is(@err, 0, 'no warnings/errors from -watch'.join(' ', @err));
         my @ls = xqx(['git', "--git-dir=$inboxdir", qw(ls-tree -r HEAD)]);
         isnt(scalar(@ls), 0, 'imported something');