From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 7B87D1FF40 for ; Wed, 14 Dec 2016 19:28:53 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] t/thread-cycle: no need for Xapian to run this test Date: Wed, 14 Dec 2016 19:28:53 +0000 Message-Id: <20161214192853.7532-1-e@80x24.org> List-Id: We don't actually use anything from SearchMsg, just the class name. --- t/thread-cycle.t | 1 - 1 file changed, 1 deletion(-) diff --git a/t/thread-cycle.t b/t/thread-cycle.t index b084449..9dd2aa3 100644 --- a/t/thread-cycle.t +++ b/t/thread-cycle.t @@ -3,7 +3,6 @@ use strict; use warnings; use Test::More; -use_ok('PublicInbox::SearchMsg'); use_ok('PublicInbox::SearchThread'); use Email::Simple; my $mt = eval { -- EW