Skip to content

Commit e063e5d

Browse files
kyleamgitster
authored andcommitted
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 <[email protected]> Reviewed-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent cd81af4 commit e063e5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

t/t1400-update-ref.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ rm -f .git/$m
6464
test_expect_success \
6565
"fail to create $n" \
6666
"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
6969

7070
test_expect_success \
7171
"create $m (by HEAD)" \

0 commit comments

Comments
 (0)