diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-02-11 12:22:43 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-02-11 12:22:43 -0400 |
commit | 2aee0efc10f0c8c1bcfa1560f57ec0a66c42414b (patch) | |
tree | 52bda5c8ebeaf642b21a9256a456eea9afe8f3dd /Test.hs | |
parent | a78f1374c045093f74c2b2a5f39577dc48eb87a0 (diff) |
dropdrive drops the leading slash, so need fil:///
Diffstat (limited to 'Test.hs')
-rw-r--r-- | Test.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1361,7 +1361,7 @@ test_addurl :: Assertion test_addurl = intmpclonerepo $ do -- file:// only; this test suite should not hit the network f <- absPath "myurl" - let url = replace "\\" "/" ("file://" ++ dropDrive f) + let url = replace "\\" "/" ("file:///" ++ dropDrive f) writeFile f "foo" git_annex "addurl" [url] @? ("addurl failed on " ++ url) let dest = "addurlurldest" |