summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Casey <drafnel@gmail.com>2008-03-02 20:58:48 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-03-03 09:20:59 (GMT)
commit059f13045aab9e22a3db2d53ee6abe4a08c4582c (patch)
tree4d498665f86643cbbce06cfc21221c619b0959a9
parentf830d45b9fdb04a5d79c25bb3a3d891d8d3b58e9 (diff)
downloadgit-059f13045aab9e22a3db2d53ee6abe4a08c4582c.zip
git-059f13045aab9e22a3db2d53ee6abe4a08c4582c.tar.gz
git-059f13045aab9e22a3db2d53ee6abe4a08c4582c.tar.bz2
t3903-stash.sh: Add missing '&&' to body of testcase
Signed-off-by: Brandon Casey <drafnel@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xt/t3903-stash.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t3903-stash.sh b/t/t3903-stash.sh
index 9a9a250..f24a4e8 100755
--- a/t/t3903-stash.sh
+++ b/t/t3903-stash.sh
@@ -40,8 +40,8 @@ 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
- ! git stash apply
+ echo 5 > other-file &&
+ test_must_fail git stash apply
'
test_expect_success 'apply stashed changes' '