aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-11-01 12:05:44 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-11-01 12:05:44 -0400
commit4cc7349fbc1294393c032f2264513f8f6dba1d84 (patch)
tree9b2e1a1569de7ddc3b33d034484756a0e04e46be
parentbdefd925cb52efb97849695a94bd8409acf2e3df (diff)
update for renamed command
-rw-r--r--Test.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Test.hs b/Test.hs
index 3684adf88..ba01acb38 100644
--- a/Test.hs
+++ b/Test.hs
@@ -370,13 +370,13 @@ test_preferred_content env = "git-annex preferred-content" ~: TestCase $ intmpcl
git_annex env "get" ["--auto", annexedfile] @? "get --auto of file failed with default preferred content"
annexed_notpresent annexedfile
- git_annex env "content" [".", "standard"] @? "set expression to standard failed"
+ git_annex env "wanted" [".", "standard"] @? "set expression to standard failed"
git_annex env "group" [".", "client"] @? "set group to standard failed"
git_annex env "get" ["--auto", annexedfile] @? "get --auto of file failed for client"
annexed_present annexedfile
git_annex env "ungroup" [".", "client"] @? "ungroup failed"
- git_annex env "content" [".", "standard"] @? "set expression to standard failed"
+ git_annex env "wanted" [".", "standard"] @? "set expression to standard failed"
git_annex env "group" [".", "manual"] @? "set group to manual failed"
-- drop --auto with manual leaves the file where it is
git_annex env "drop" ["--auto", annexedfile] @? "drop --auto of file failed with manual preferred content"
@@ -388,7 +388,7 @@ test_preferred_content env = "git-annex preferred-content" ~: TestCase $ intmpcl
annexed_notpresent annexedfile
git_annex env "ungroup" [".", "client"] @? "ungroup failed"
- git_annex env "content" [".", "exclude=*"] @? "set expression to exclude=* failed"
+ git_annex env "wanted" [".", "exclude=*"] @? "set expression to exclude=* failed"
git_annex env "get" [annexedfile] @? "get of file failed"
annexed_present annexedfile
git_annex env "drop" ["--auto", annexedfile] @? "drop --auto of file failed with exclude=*"