]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/git.t
treewide: run update-copyrights from gnulib for 2019
[public-inbox.git] / t / git.t
diff --git a/t/git.t b/t/git.t
index 6cfadd085f20d82c46c47c015da870b1e74476e9..8224969d0661fb7d6707a39ae779613ca38cf5b1 100644 (file)
--- a/t/git.t
+++ b/t/git.t
@@ -1,4 +1,4 @@
-# Copyright (C) 2015-2019 all contributors <meta@public-inbox.org>
+# Copyright (C) 2015-2020 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
 use warnings;
@@ -92,7 +92,7 @@ if ('alternates reloaded') {
        my @cmd = ('git', "--git-dir=$alt", qw(hash-object -w --stdin));
        is(system(qw(git init -q --bare), $alt), 0, 'create alt directory');
        open my $fh, '<', "$alt/config" or die "open failed: $!\n";
-       my $rd = popen_rd(\@cmd, {}, { 0 => fileno($fh) } );
+       my $rd = popen_rd(\@cmd, {}, { 0 => $fh } );
        close $fh or die "close failed: $!";
        chomp(my $remote = <$rd>);
        my $gcf = PublicInbox::Git->new($dir);