From 691a941f78cd3508f8b405a81bae813b0e688ee2 Mon Sep 17 00:00:00 2001 From: Kim Altintop Date: Tue, 22 Jan 2019 10:44:14 +0100 Subject: [PATCH] Double the size of the LOB, just to be sure --- git-remote-ipfs/test/e2e/Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-remote-ipfs/test/e2e/Main.hs b/git-remote-ipfs/test/e2e/Main.hs index 19f92d4..a389b7c 100644 --- a/git-remote-ipfs/test/e2e/Main.hs +++ b/git-remote-ipfs/test/e2e/Main.hs @@ -146,7 +146,7 @@ simpleHistory = lobHistory :: ReaderT LgRepo IO (Commit LgRepo) lobHistory = do - blob <- createBlob . BlobString =<< liftIO (getEntropy 2048000) + blob <- createBlob . BlobString =<< liftIO (getEntropy 4096000) tree <- createTree $ putBlob "binarylargeobject" blob sig' <- mkSig <$> liftIO getZonedTime createCommit [] tree sig' sig' "A large bunch of bytes" (Just "HEAD")