From: Pete Wyckoff Date: Sun, 31 Jul 2011 13:45:17 +0000 (-0400) Subject: git-p4: add missing && in test X-Git-Tag: v1.7.7-rc0~66 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=83cf0fe49fc6a7124377ef6dec75a9776c753346;p=git.git git-p4: add missing && in test Signed-off-by: Pete Wyckoff Acked-by: Luke Diamand Signed-off-by: Junio C Hamano --- diff --git a/t/t9800-git-p4.sh b/t/t9800-git-p4.sh index aec3ba164..b7eda8289 100755 --- a/t/t9800-git-p4.sh +++ b/t/t9800-git-p4.sh @@ -202,7 +202,7 @@ test_expect_success 'preserve user where author is unknown to p4' ' "$GITP4" clone --dest="$git" //depot && test_when_finished cleanup_git && cd "$git" && - git config git-p4.skipSubmitEditCheck true + git config git-p4.skipSubmitEditCheck true && echo "username-bob: a change by bob" >> file1 && git commit --author "Bob " -m "preserve: a change by bob" file1 && echo "username-unknown: a change by charlie" >> file1 &&