From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: meta@public-inbox.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id EDEEE63380A; Thu, 4 Feb 2016 09:15:54 +0000 (UTC) Date: Thu, 4 Feb 2016 09:15:54 +0000 From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 2/1] t/cgi.t: fix broken test for dumb HTTP Message-ID: <20160204091554.GA13567@dcvr.yhbt.net> References: <20160202040949.26853-1-e@80x24.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160202040949.26853-1-e@80x24.org> List-Id: This should not be dependent on what is in the users' $HOME config, oops. --- t/cgi.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/cgi.t b/t/cgi.t index 4ce6514..ebf1416 100644 --- a/t/cgi.t +++ b/t/cgi.t @@ -104,6 +104,7 @@ EOF # dumb HTTP support { + local $ENV{HOME} = $home; my $path = "/test/info/refs"; my $res = cgi_run($path); like($res->{head}, qr/Status:\s*200/i, "info/refs readable"); -- EW