about summary refs log tree commit homepage
path: root/t/imapd.t
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-06-20 00:13:02 +0000
committerEric Wong <e@yhbt.net>2020-06-21 17:31:44 +0000
commit7d626338a6bf02c1098ba16302f5c13be0370673 (patch)
tree4ef6603a3f82e196f45c07ea06e37dd00c839acf /t/imapd.t
parent476f054f21ee64a08418cacb23b5a48c68858441 (diff)
downloadpublic-inbox-7d626338a6bf02c1098ba16302f5c13be0370673.tar.gz
We also need to check for git 2.6 earlier in each test case,
before any other TAP output is emitted to avoid confusing the
TAP consumers.
Diffstat (limited to 't/imapd.t')
-rw-r--r--t/imapd.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/imapd.t b/t/imapd.t
index f9d93448..ffa195d5 100644
--- a/t/imapd.t
+++ b/t/imapd.t
@@ -105,7 +105,7 @@ my @orig_list = @raw = $mic->list;
 like($raw[0], qr/^\* LIST \(.*?\) "\." INBOX/,
         'got an inbox');
 like($raw[-1], qr/^\S+ OK /, 'response ended with OK');
-is(scalar(@raw), scalar(@V) + 4, 'default LIST response');
+is(scalar(@raw), scalar(@V) * 2 + 2, 'default LIST response');
 @raw = $mic->list('', 'inbox.i1');
 is(scalar(@raw), 2, 'limited LIST response');
 like($raw[0], qr/^\* LIST \(.*?\) "\." INBOX/,