diff options
author | Joey Hess <joey@kitenet.net> | 2011-01-11 21:32:38 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-01-11 21:32:38 -0400 |
commit | e18a4d566b4f205c8a60ddf79ce02ba023d34984 (patch) | |
tree | 0619f017f42d5b6941051da42024431e38e39feb /test.hs | |
parent | b557a2ccf4cd634a2c276b9ae03b881814de58be (diff) |
migrate: Fix support for --backend option.
Diffstat (limited to 'test.hs')
-rw-r--r-- | test.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" |