From: David Pursehouse Date: Fri, 27 Jan 2017 08:08:09 +0000 (+0900) Subject: ReceivePackAdvertiseRefsHookTest: Don't close repositories in teardown X-Git-Tag: v4.7.0.201704051617-r~99 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=25b14084c9e0ff0cc9332c49feb2aac01cab6400;p=jgit.git ReceivePackAdvertiseRefsHookTest: Don't close repositories in teardown The repositories get added to the "toClose" set by createBareRepository, and are then closed in the superclass's tearDown method. Explicitly closing them in this test class's teardown causes the use count to go negative when subsequently closed again by the superclass. Change-Id: Idcbb16b4cf4bf0640d7e4ac15d1926d8a27c1251 Signed-off-by: David Pursehouse --- diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/ReceivePackAdvertiseRefsHookTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/ReceivePackAdvertiseRefsHookTest.java index 94bc383db7..d66ace53e8 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/ReceivePackAdvertiseRefsHookTest.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/ReceivePackAdvertiseRefsHookTest.java @@ -128,16 +128,6 @@ public class ReceivePackAdvertiseRefsHookTest extends LocalDiskRepositoryTestCas d.update(R_PRIVATE, P); } - @Override - @After - public void tearDown() throws Exception { - if (src != null) - src.close(); - if (dst != null) - dst.close(); - super.tearDown(); - } - @Test public void testFilterHidesPrivate() throws Exception { Map refs;