Skip to content

Commit d9c8344

Browse files
raalkmlgitster
authored andcommitted
stop t1400 hiding errors in tests
The last rm in the test was lacking an "&&" before it, which caused the errors in the commands be silently hidden. Signed-off-by: Alex Riesen <raa.lkml@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent d349a03 commit d9c8344

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t1400-update-ref.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ test_expect_success \
205205
echo $h_TEST >.git/MERGE_HEAD &&
206206
GIT_AUTHOR_DATE="2005-05-26 23:45" \
207207
GIT_COMMITTER_DATE="2005-05-26 23:45" git-commit -F M &&
208-
h_MERGED=$(git rev-parse --verify HEAD)
208+
h_MERGED=$(git rev-parse --verify HEAD) &&
209209
rm -f M'
210210

211211
cat >expect <<EOF

0 commit comments

Comments
 (0)