]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Missing && in t/t7001.sh.
authorMatthieu Moy <Matthieu.Moy@imag.fr>
Wed, 4 Feb 2009 09:32:06 +0000 (10:32 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 4 Feb 2009 19:04:44 +0000 (11:04 -0800)
Without this, the exit status is only the one of the last line.

Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7001-mv.sh

index 19493c8052b8fe009c80336230b2044669c23394..539effe694684dde01da1a93421a28b549b9527a 100755 (executable)
@@ -55,7 +55,7 @@ test_expect_success \
      git mv -k untracked1 untracked2 path0 &&
      test -f untracked1 &&
      test -f untracked2 &&
-     test ! -f path0/untracked1
+     test ! -f path0/untracked1 &&
      test ! -f path0/untracked2'
 
 # clean up the mess in case bad things happen