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 6060C1F5AE for ; Sun, 2 Aug 2020 07:55:23 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] t/indexlevels-mirror-v1: localize ENV change Date: Sun, 2 Aug 2020 07:55:23 +0000 Message-Id: <20200802075523.21814-1-e@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: We don't want ENV changes propagated to other tests when using t/run.perl via "make check-run" --- t/indexlevels-mirror-v1.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/indexlevels-mirror-v1.t b/t/indexlevels-mirror-v1.t index b6593319..adcc93fd 100644 --- a/t/indexlevels-mirror-v1.t +++ b/t/indexlevels-mirror-v1.t @@ -1,4 +1,4 @@ # Copyright (C) 2019-2020 all contributors # License: AGPL-3.0+ -$ENV{PI_TEST_VERSION} = 1; +local $ENV{PI_TEST_VERSION} = 1; require './t/indexlevels-mirror.t';