diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-04-12 18:57:08 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-04-12 18:57:08 -0700 |
commit | 02604e293a3b7d48b0ce4e34149de8dc89c674e5 (patch) | |
tree | 432409e36fcf200a8154f1ff726fdbd26973e170 | |
parent | 51836e9e125f67aa26724154757b4734c08057e4 (diff) | |
download | git-02604e293a3b7d48b0ce4e34149de8dc89c674e5.tar.gz |
t7401: squelch garbage output
The script had an unconditional output done outside of test_expect_*
construct, which leaked out and contaminated the output without -v.
Squelch it.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t7401-submodule-summary.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7401-submodule-summary.sh b/t/t7401-submodule-summary.sh index 0f3c42ab35..b9a22190e8 100755 --- a/t/t7401-submodule-summary.sh +++ b/t/t7401-submodule-summary.sh @@ -30,7 +30,7 @@ commit_file () { } test_create_repo sm1 && -add_file . foo +add_file . foo >/dev/null head1=$(add_file sm1 foo1 foo2) |