summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Kyle Meyer <kyle@kyleam.com>2017-03-20 20:56:15 -0400
committerLibravatar Junio C Hamano <gitster@pobox.com>2017-03-21 10:50:16 -0700
commite063e5d7daa6440911b17d518dabc52f3fc42162 (patch)
treec25e964d1150acee885ccd70dda907dc087ca7e1
parentt1400: use test_path_is_* helpers (diff)
downloadtgif-e063e5d7daa6440911b17d518dabc52f3fc42162.tar.xz
t1400: remove a set of unused output files
This test case redirects stdout and stderr to output files, but, unlike the other cases of redirection in the t1400 tests, these files are not examined downstream. Remove the redirection so that the output is visible when running the tests verbosely. Signed-off-by: Kyle Meyer <kyle@kyleam.com> Reviewed-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xt/t1400-update-ref.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t1400-update-ref.sh b/t/t1400-update-ref.sh
index c5c8e95fc4..9e7e0227e0 100755
--- a/t/t1400-update-ref.sh
+++ b/t/t1400-update-ref.sh
@@ -64,8 +64,8 @@ rm -f .git/$m
test_expect_success \
"fail to create $n" \
"touch .git/$n_dir &&
- test_must_fail git update-ref $n $A >out 2>err"
-rm -f .git/$n_dir out err
+ test_must_fail git update-ref $n $A"
+rm -f .git/$n_dir
test_expect_success \
"create $m (by HEAD)" \