about summary refs log tree commit homepage
path: root/t/thread-cycle.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2018-04-25 08:52:49 +0000
committerEric Wong <e@80x24.org>2018-04-25 08:53:03 +0000
commitc204da04aa24e85236f82ba5a7c6c7e19c8a20d3 (patch)
tree35272c2de196ff51585bd1899c0a066d969c1548 /t/thread-cycle.t
parentec2df4c3b80104a0bf15b0d917d82264bbf9b50e (diff)
downloadpublic-inbox-c204da04aa24e85236f82ba5a7c6c7e19c8a20d3.tar.gz
Improve the display by finding any parent when we see out-of-order
References.  This prevents us from having two roots in the test
case like Mail::Thread does.
Diffstat (limited to 't/thread-cycle.t')
-rw-r--r--t/thread-cycle.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/thread-cycle.t b/t/thread-cycle.t
index 9e915a12..78dcb6f9 100644
--- a/t/thread-cycle.t
+++ b/t/thread-cycle.t
@@ -85,13 +85,13 @@ SKIP: {
 }
 ($simples, $smsgs) = make_objs(reverse @backwards);
 my $forward = thread_to_s($smsgs);
-if ('Mail::Thread sorts by Date') {
+unless ('Mail::Thread sorts by Date') {
         SKIP: {
                 skip 'Mail::Thread missing', 1 unless $mt;
                 check_mt($forward, $simples, 'matches Mail::Thread forwards');
         }
 }
-unless ('sorting by Date') {
+if ('sorting by Date') {
         is("\n".$backward, "\n".$forward, 'forward and backward matches');
 }