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>
Kyle Meyer committed
Mar 20, 2017 at 20:56 UTC
e063e5d7daa6440911b17d518dabc52f3fc42162
1 file changed
+2
-2
t/t1400-update-ref.sh
+2
-2
@@ -64,8 +64,8 @@ rm -f .git/$m
64
test_expect_success \
65
"fail to create $n" \
66
"touch .git/$n_dir &&
67
- test_must_fail git update-ref $n $A >out 2>err"
68
-rm -f .git/$n_dir out err
67
+ test_must_fail git update-ref $n $A"
68
+rm -f .git/$n_dir
69
70
test_expect_success \
71
"create $m (by HEAD)" \