From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: 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.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id C90F21F9FD for ; Fri, 19 Feb 2021 19:36:57 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] t/net_reader-imap: fix under TEST_RUN_MODE=0 Date: Fri, 19 Feb 2021 19:36:56 +0000 Message-Id: <20210219193656.40942-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: PublicInbox::Config isn't loaded elsewhere by this file. --- t/net_reader-imap.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/net_reader-imap.t b/t/net_reader-imap.t index 694b5a37..adcd6931 100644 --- a/t/net_reader-imap.t +++ b/t/net_reader-imap.t @@ -4,6 +4,7 @@ use strict; use v5.10.1; use PublicInbox::TestCommon; require_git 2.6; require_mods(qw(DBD::SQLite Search::Xapian Mail::IMAPClient)); +use PublicInbox::Config; my ($tmpdir, $for_destroy) = tmpdir; my ($ro_home, $cfg_path) = setup_public_inboxes; my $cmd = [ '-imapd', '-W0', "--stdout=$tmpdir/1", "--stderr=$tmpdir/2" ];