UploadPackTest#testUploadRedundantBytes: ensure test repo is closed

This fixes a resource leak warning.

Change-Id: I65166eeefc719ea577963c84ce2059e2d7e6c1d7
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2020-10-02 01:17:37 +02:00
parent 7fbc0e02a0
commit dcc6c8a261
1 changed files with 10 additions and 7 deletions

View File

@ -1117,13 +1117,16 @@ public void testUploadRedundantBytes() throws Exception {
RevCommit child = remote.commit(remote.tree(remote.file("foo", childBlob)), parent);
remote.update("branch1", child);
TestRepository<InMemoryRepository> local = new TestRepository<>(client);
RevBlob localParentBlob = local.blob(commonInBlob + "a");
RevCommit localParent = local.commit(local.tree(local.file("foo", localParentBlob)));
RevBlob localChildBlob = local.blob(commonInBlob + "b");
RevCommit localChild = local.commit(
local.tree(local.file("foo", localChildBlob)), localParent);
local.update("branch1", localChild);
try (TestRepository<InMemoryRepository> local = new TestRepository<>(
client)) {
RevBlob localParentBlob = local.blob(commonInBlob + "a");
RevCommit localParent = local
.commit(local.tree(local.file("foo", localParentBlob)));
RevBlob localChildBlob = local.blob(commonInBlob + "b");
RevCommit localChild = local.commit(
local.tree(local.file("foo", localChildBlob)), localParent);
local.update("branch1", localChild);
}
ByteArrayInputStream recvStream = uploadPackV2(
"command=fetch\n",