summaryrefslogtreecommitdiff
path: root/test.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-01-11 21:32:38 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-01-11 21:32:38 -0400
commite18a4d566b4f205c8a60ddf79ce02ba023d34984 (patch)
tree0619f017f42d5b6941051da42024431e38e39feb /test.hs
parentb557a2ccf4cd634a2c276b9ae03b881814de58be (diff)
migrate: Fix support for --backend option.
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 716d1a0de..417d830e8 100644
--- a/test.hs
+++ b/test.hs
@@ -328,8 +328,8 @@ test_migrate = "git-annex migrate" ~: TestList [t False, t True]
if usegitattributes
then do
writeFile ".gitattributes" "* annex.backend=SHA1"
- git_annex "migrate" [sha1annexedfile] @? "migrate to same backend failed"
- git_annex "migrate" [annexedfile] @? "migrate to different backend failed"
+ git_annex "migrate" ["-q", sha1annexedfile] @? "migrate to same backend failed"
+ git_annex "migrate" ["-q", annexedfile] @? "migrate to different backend failed"
else do
git_annex "migrate" [sha1annexedfile, "--backend=SHA1"] @? "migrate to same backend failed"
git_annex "migrate" [annexedfile, "--backend=SHA1"] @? "migrate to different backend failed"