diff options
author | Robin Rosenberg <robin.rosenberg@dewire.com> | 2011-03-27 22:53:26 +0200 |
---|---|---|
committer | Robin Rosenberg <robin.rosenberg@dewire.com> | 2011-03-28 07:41:45 +0200 |
commit | 73602c448cde4e69ca59476d2b1c49ef91367591 (patch) | |
tree | ffece2ea11868ca8242b02803831d26e8b272c02 /org.eclipse.jgit.test/tst | |
parent | 76d25273cc6faf134898771db60fae4b9e27f5d9 (diff) | |
download | jgit-73602c448cde4e69ca59476d2b1c49ef91367591.tar.gz jgit-73602c448cde4e69ca59476d2b1c49ef91367591.zip |
Use Ignore to bypass unused test
Change-Id: Ica9e50c0d512865d217f55bf0d100f27878031b9
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
Diffstat (limited to 'org.eclipse.jgit.test/tst')
-rw-r--r-- | org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/URIishTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/URIishTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/URIishTest.java index e6990fb83f..edcab8a92d 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/URIishTest.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/URIishTest.java @@ -55,6 +55,7 @@ import java.io.File; import java.io.IOException; import java.net.URISyntaxException; +import org.junit.Ignore; import org.junit.Test; public class URIishTest { @@ -315,8 +316,8 @@ public class URIishTest { assertEquals(u, new URIish(str)); } - /* Resolving ~user is beyond standard Java API and need more support @Test + @Ignore("Resolving ~user is beyond standard Java API and need more support") public void testFileWithUserHome() throws Exception { final String str = "~some/p ath"; URIish u = new URIish(str); @@ -331,7 +332,6 @@ public class URIishTest { assertEquals(u.setPass(null).toPrivateString(), u.toString()); assertEquals(u, new URIish(str)); } - */ @Test public void testFileWithNoneUserHomeWithTilde() throws Exception { |