diff options
author | Jens Lehmann <Jens.Lehmann@web.de> | 2010-09-05 14:56:11 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-09-06 07:10:22 +0200 |
commit | 65b26eb4668f0499bc1e671edb59842529cb286d (patch) | |
tree | cc84c390ab746d7c95954c3574a5652803f9f2fc /t/t5505-remote.sh | |
parent | Merge branch 'maint-1.6.5' into maint-1.6.6 (diff) | |
download | git-65b26eb4668f0499bc1e671edb59842529cb286d.tar.xz git-65b26eb4668f0499bc1e671edb59842529cb286d.zip |
t5505: add missing &&
Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rwxr-xr-x | t/t5505-remote.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5505-remote.sh b/t/t5505-remote.sh index 936fe0a1a6..4b6befe723 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) ' |