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-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,AWL,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 561731FD59 for ; Sat, 11 Jan 2020 22:35:05 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 8/9] t/solver_git: avoid uninitialized warnings in hostname generation Date: Sat, 11 Jan 2020 22:35:02 +0000 Message-Id: <20200111223503.24473-9-e@yhbt.net> In-Reply-To: <20200111223503.24473-1-e@yhbt.net> References: <20200111223503.24473-1-e@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Outside of tests, this is only relevant for non-PSGI use, which may happen someday... Fixes: cb1c874520153f5c ("inbox: use PublicInbox::Git::host_prefix_url for base_url") --- t/solver_git.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/solver_git.t b/t/solver_git.t index 77fa1e09..98317fae 100644 --- a/t/solver_git.t +++ b/t/solver_git.t @@ -42,7 +42,8 @@ $ibx->{-repo_objs} = [ $git ]; my $res; my $solver = PublicInbox::SolverGit->new($ibx, sub { $res = $_[0] }); open my $log, '+>>', "$inboxdir/solve.log" or die "open: $!"; -my $psgi_env = { 'psgi.errors' => *STDERR, 'psgi.url_scheme' => 'http' }; +my $psgi_env = { 'psgi.errors' => *STDERR, 'psgi.url_scheme' => 'http', + 'HTTP_HOST' => 'example.com' }; $solver->solve($psgi_env, $log, '69df7d5', {}); ok($res, 'solved a blob!'); my $wt_git = $res->[0];