From: Eric Wong Date: Sat, 25 Nov 2023 00:09:03 +0000 (+0000) Subject: t/cindex-join: fix warnings from a missing comma X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1422ef64676ee393b54ff817ebec01d326fdc97c;p=thirdparty%2Fpublic-inbox.git t/cindex-join: fix warnings from a missing comma Yes, that was valid Perl syntax :x --- diff --git a/t/cindex-join.t b/t/cindex-join.t index 0972afa4a..2836eb6c6 100644 --- a/t/cindex-join.t +++ b/t/cindex-join.t @@ -41,7 +41,7 @@ EOM while (my ($url, $v, $ng) = splice(@inboxes, 0, 3)) { my ($key) = ($url =~ m!/([^/]+)\z!); - my @opt = (version => $v, tmpdir => "$tmpdir/$key" -no_gc => 1); + my @opt = (version => $v, tmpdir => "$tmpdir/$key", -no_gc => 1); $inboxes{$key} = create_inbox $key, @opt, sub { my ($im, $ibx) = @_; $im->done;