From aa08a022f14f14d8d9a458a7ec6bee7b3af693d2 Mon Sep 17 00:00:00 2001 From: Robin Rosenberg Date: Wed, 7 Oct 2009 23:45:31 +0200 Subject: [PATCH] Remove a duplicate test from T0003_Basic In the pre-historic commit 6d87484b4dee5671a38e64a8e4990dff40a4874f two tests became identical. Remove one of them. Change-Id: I6182ecd4db0162d87a5f4577005b2bf4d5e8c89f Signed-off-by: Robin Rosenberg --- .../tst/org/eclipse/jgit/lib/T0003_Basic.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/T0003_Basic.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/T0003_Basic.java index d17cea6ae..081e8e4c9 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/T0003_Basic.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/T0003_Basic.java @@ -126,16 +126,6 @@ public void test003_WriteShouldBeEmptyTree() throws IOException { assertTrue("Read-only " + o, !o.canWrite()); } - public void test004_CheckNewConfig() { - final RepositoryConfig c = db.getConfig(); - assertNotNull(c); - assertEquals("0", c.getString("core", null, "repositoryformatversion")); - assertEquals("0", c.getString("CoRe", null, "REPOSITORYFoRmAtVeRsIoN")); - assertEquals("true", c.getString("core", null, "filemode")); - assertEquals("true", c.getString("cOrE", null, "fIlEModE")); - assertNull(c.getString("notavalue", null, "reallyNotAValue")); - } - public void test005_ReadSimpleConfig() { final RepositoryConfig c = db.getConfig(); assertNotNull(c);