aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Lehmann <Jens.Lehmann@web.de>2010-09-05 14:56:11 +0200
committerJunio C Hamano <gitster@pobox.com>2010-09-05 22:10:22 -0700
commit65b26eb4668f0499bc1e671edb59842529cb286d (patch)
treecc84c390ab746d7c95954c3574a5652803f9f2fc
parentad336054068074ed614d0bb54bb169e5263499d7 (diff)
downloadgit-65b26eb4668f0499bc1e671edb59842529cb286d.tar.gz
git-65b26eb4668f0499bc1e671edb59842529cb286d.tar.xz
t5505: add missing &&
Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xt/t5505-remote.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5505-remote.sh b/t/t5505-remote.sh
index 936fe0a1a..4b6befe72 100755
--- a/t/t5505-remote.sh
+++ b/t/t5505-remote.sh
@@ -371,7 +371,7 @@ test_expect_success 'update --prune' '
git branch -m side2 side3) &&
(cd test &&
git remote update --prune &&
- (cd ../one && git branch -m side3 side2)
+ (cd ../one && git branch -m side3 side2) &&
git rev-parse refs/remotes/origin/side3 &&
test_must_fail git rev-parse refs/remotes/origin/side2)
'