summaryrefslogtreecommitdiff
path: root/test.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-09-29 21:11:48 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-09-29 21:11:48 -0400
commit4050c24d7bc49345b914bc062c0a5aedb93cfc8d (patch)
tree366666851d71ed424ccd87932668d29094f42113 /test.hs
parent67f2b7cb3eba19eb1ee55585f497e35172971e1a (diff)
ssh
Diffstat (limited to 'test.hs')
-rw-r--r--test.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test.hs b/test.hs
index 21e09e98e..f8701db66 100644
--- a/test.hs
+++ b/test.hs
@@ -453,13 +453,13 @@ test_unused = "git-annex unused/dropunused" ~: intmpclonerepo $ do
checkunused []
boolSystem "git" [Params "rm -q", File annexedfile] @? "git rm failed"
checkunused []
- boolSystem "git" [Params "commit -m foo"] @? "git commit failed"
+ boolSystem "git" [Params "commit -q -m foo"] @? "git commit failed"
checkunused []
-- unused checks origin/master; once it's gone it is really unused
boolSystem "git" [Params "remote rm origin"] @? "git remote rm origin failed"
checkunused [annexedfilekey]
boolSystem "git" [Params "rm -q", File sha1annexedfile] @? "git rm failed"
- boolSystem "git" [Params "commit -m foo"] @? "git commit failed"
+ boolSystem "git" [Params "commit -q -m foo"] @? "git commit failed"
checkunused [annexedfilekey, sha1annexedfilekey]
-- good opportunity to test dropkey also