]> Sergey Matveev's repositories - public-inbox.git/commitdiff
t/v1-add-remove-add: quiet down "git init"
authorEric Wong <e@80x24.org>
Sun, 24 Nov 2019 00:22:23 +0000 (00:22 +0000)
committerEric Wong <e@80x24.org>
Sun, 24 Nov 2019 21:34:03 +0000 (21:34 +0000)
Use the "-q" flag like everywhere else.

t/v1-add-remove-add.t

index 3facd87e10bb7919e73231ef0033d4a5594478c4..035fba5cdc17d64cbbb34337d6f751a052abdf02 100644 (file)
@@ -13,7 +13,7 @@ foreach my $mod (qw(DBD::SQLite Search::Xapian)) {
 }
 require PublicInbox::SearchIdx;
 my $inboxdir = tempdir('pi-add-remove-add-XXXXXX', TMPDIR => 1, CLEANUP => 1);
-is(system(qw(git init --bare), $inboxdir), 0);
+is(system(qw(git init -q --bare), $inboxdir), 0);
 my $ibx = {
        inboxdir => $inboxdir,
        name => 'test-add-remove-add',