From mboxrd@z Thu Jan 1 00:00:00 1970 From: drafnel@gmail.com Subject: [PATCH 1/4] t3903-stash.sh: Add missing '&&' to body of testcase Date: Sun, 2 Mar 2008 14:58:48 -0600 Message-ID: <11977092.1204491503671.JavaMail.teamon@b308.teamon.com> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Cc: git@vger.kernel.org, Brandon Casey To: gitster@pobox.com X-From: git-owner@vger.kernel.org Sun Mar 02 22:13:28 2008 Return-path: Envelope-to: gcvg-git-2@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1JVvUr-00048E-Fl for gcvg-git-2@gmane.org; Sun, 02 Mar 2008 22:13:25 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756435AbYCBVMv (ORCPT ); Sun, 2 Mar 2008 16:12:51 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756371AbYCBVMu (ORCPT ); Sun, 2 Mar 2008 16:12:50 -0500 Received: from www.teamon.com ([216.34.91.250]:39862 "EHLO b308.teamon.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753948AbYCBVMs (ORCPT ); Sun, 2 Mar 2008 16:12:48 -0500 X-Greylist: delayed 822 seconds by postgrey-1.27 at vger.kernel.org; Sun, 02 Mar 2008 16:12:47 EST Received: from b308.teamon.com (localhost [127.0.0.1]) by b308.teamon.com (8.11.7 DSN_MOD/8.11.7) with ESMTP id m22KwN022245; Sun, 2 Mar 2008 20:58:23 GMT X-Mailer: git-send-email 1.5.4.3.412.gcd100 Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Signed-off-by: Brandon Casey --- It looks like this was just forgotten. I can't think of any reason why you'd not want the echos and git-add to be part of the whole return value of the test. -brandon t/t3903-stash.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/t/t3903-stash.sh b/t/t3903-stash.sh index 9a9a250..50a2c83 100755 --- a/t/t3903-stash.sh +++ b/t/t3903-stash.sh @@ -40,7 +40,7 @@ test_expect_success 'parents of stash' ' test_expect_success 'apply needs clean working directory' ' echo 4 > other-file && git add other-file && - echo 5 > other-file + echo 5 > other-file && ! git stash apply ' -- 1.5.4.3.412.gcd100