From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id E97A61F783 for ; Tue, 23 Jul 2024 21:28:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1721770118; bh=btsNaK3bVmNK/0CkVRrIPSS7SJpz73NypX5u+LuqWV8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=5fSiynQy6PX/ICEYQICXDLd5YlxqDjhJdn/+DSQccfYdvNSAbqFoF/oDGFhkNWWou AtakVRLvA6WwQdDFCWa1A0uECKetOCtpvbnuN1DdVJXZqwhDzF9p1aCDTh5Ky2E4rW ah6x7SqZni6M97DMzvnbSbw5jP36YaGg5hexeiRg= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 1/4] t/msgmap: updates for Perl 5.12+ and copyrights Date: Tue, 23 Jul 2024 21:28:34 +0000 Message-ID: <20240723212837.3931413-2-e@80x24.org> In-Reply-To: <20240723212837.3931413-1-e@80x24.org> References: <20240723212837.3931413-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Test::More is redundant with TestCommon, and nothing here conflicts with the unicode_strings feature in Perl v5.12. --- t/msgmap.t | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/t/msgmap.t b/t/msgmap.t index a3b7200f..124d3b10 100644 --- a/t/msgmap.t +++ b/t/msgmap.t @@ -1,8 +1,7 @@ -# Copyright (C) 2015-2021 all contributors +#!perl -w +# Copyright (C) all contributors # License: AGPL-3.0+ -use strict; -use warnings; -use Test::More; +use v5.12; use PublicInbox::TestCommon; require_mods('DBD::SQLite'); use_ok 'PublicInbox::Msgmap';