Skip to content

Commit

Permalink
t9814: fix broken shell syntax in git-p4 rename test
Browse files Browse the repository at this point in the history
An update to the tests in 2.1 era introduced a broken case statements
that lack closing esac.

Signed-off-by: Vitor Antunes <vitor.hda@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Vitor Antunes authored and Junio C Hamano committed Mar 28, 2015
1 parent e832f73 commit 83e085a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/t9814-git-p4-rename.sh
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ test_expect_success 'detect copies' '
case "$src" in
file10 | file11) : ;; # happy
*) false ;; # not
&&
esac &&
git config git-p4.detectCopies $(($level + 2)) &&
git p4 submit &&
p4 filelog //depot/file12 &&
Expand All @@ -197,7 +197,7 @@ test_expect_success 'detect copies' '
case "$src" in
file10 | file11 | file12) : ;; # happy
*) false ;; # not
&&
esac &&
git config git-p4.detectCopies $(($level - 2)) &&
git p4 submit &&
p4 filelog //depot/file13 &&
Expand Down

0 comments on commit 83e085a

Please sign in to comment.