diff options
author | Adam Domurad <[email protected]> | 2013-06-05 15:12:01 -0400 |
---|---|---|
committer | Adam Domurad <[email protected]> | 2013-06-05 15:12:01 -0400 |
commit | 6b9db3b5496e986d9cbe16f94d65c6bb49aa6df7 (patch) | |
tree | 560fe41682dc8ea36843759d3de3402532131170 /tests/netx/unit/net/sourceforge/jnlp/cache | |
parent | d529b383c65853c4c02276bd3eab2988b5a5370b (diff) |
Fix PR1465 - java.io.FileNotFoundException while trying to download a JAR file
Diffstat (limited to 'tests/netx/unit/net/sourceforge/jnlp/cache')
-rw-r--r-- | tests/netx/unit/net/sourceforge/jnlp/cache/ResourceTrackerTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/netx/unit/net/sourceforge/jnlp/cache/ResourceTrackerTest.java b/tests/netx/unit/net/sourceforge/jnlp/cache/ResourceTrackerTest.java index 0b19668..03d942b 100644 --- a/tests/netx/unit/net/sourceforge/jnlp/cache/ResourceTrackerTest.java +++ b/tests/netx/unit/net/sourceforge/jnlp/cache/ResourceTrackerTest.java @@ -80,7 +80,7 @@ public class ResourceTrackerTest { Assert.assertFalse("url " + i + " must be normalized (and so not equals) too normalized url " + i, u[i].equals(n[i])); } } - public static final int CHANGE_BORDER = 6; + public static final int CHANGE_BORDER = 8; public static URL[] getUrls() throws MalformedURLException { URL[] u = { @@ -91,9 +91,9 @@ public class ResourceTrackerTest { new URL("http:///SpacesCanBeEverywhere1.jnlp"), new URL("file://localhost/home/jvanek/Desktop/icedtea-web/tests.build/jnlp_test_server/Spaces can be everywhere2.jnlp"), new URL("http://localhost:44321/testpage.jnlp?applicationID=25"), - /*changing*/ new URL("http://localhost:44321/Spaces%20Can%20Be%20Everyw%2Fhere1.jnlp"), new URL("http://localhost/Spaces+Can+Be+Everywhere1.jnlp"), + /*changing*/ new URL("http://localhost/SpacesC anBeEverywhere1.jnlp?a=5&b=10#df"), new URL("http:///oook.jnlp?a=5&b=ahoj šš dd#df"), new URL("http://localhost/Spacesěčšžšřýžčřú can !@^*(){}[].jnlp?a=5&ahoj šš dd#df"), |