diff options
author | Joey Hess <joey@kitenet.net> | 2011-01-16 16:05:05 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-01-16 16:05:05 -0400 |
commit | e7b557ef5d347831142fd98eac901d79c7e1305d (patch) | |
tree | dbd5d0bcb578e457a6bb23a856b27f4aa27abd36 /test.hs | |
parent | 84836ed804633fa3d8ff50064331b8b90bb160dd (diff) |
got rid of Core module
Most of it was to do with managing annexed Content, so put there
Diffstat (limited to 'test.hs')
-rw-r--r-- | test.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -32,7 +32,7 @@ import qualified GitAnnex import qualified LocationLog import qualified UUID import qualified Remotes -import qualified Core +import qualified Content import qualified Backend.SHA1 import qualified Backend.WORM import qualified Command.DropUnused @@ -318,7 +318,7 @@ test_fsck = "git-annex fsck" ~: intmpclonerepo $ do where corrupt f = do git_annex "get" ["-q", f] @? "get of file failed" - Core.allowWrite f + Content.allowWrite f writeFile f (changedcontent f) r <- git_annex "fsck" ["-q"] not r @? "fsck failed to fail with corrupted file content" |