summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Wilson <jessewilson@google.com>2009-09-30 15:33:46 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2009-09-30 15:33:46 -0700
commitd88fdb04d6f8a87af40433655430de633b1bbea5 (patch)
treea245be4d7e0a3ca646ff7f82d94bb6d287437adb
parent4aef7e73e12297767f165c585fec6e4b574e67d1 (diff)
parentee92973e5d6dd7c5df57dd41fa3a482c076a79a8 (diff)
downloadlibcore-d88fdb04d6f8a87af40433655430de633b1bbea5.zip
libcore-d88fdb04d6f8a87af40433655430de633b1bbea5.tar.gz
libcore-d88fdb04d6f8a87af40433655430de633b1bbea5.tar.bz2
am 910363bd: Merge change Ib5dc3f1f into eclair
Merge commit '910363bd8d50c2a5558a71e47377928265c1219e' into eclair-plus-aosp * commit '910363bd8d50c2a5558a71e47377928265c1219e': Fixing a lame test that was relying on hashmap iteration order.
-rw-r--r--luni/src/test/java/tests/api/java/net/JarURLConnectionTest.java15
1 files changed, 5 insertions, 10 deletions
diff --git a/luni/src/test/java/tests/api/java/net/JarURLConnectionTest.java b/luni/src/test/java/tests/api/java/net/JarURLConnectionTest.java
index 8303db3..7a67bf8 100644
--- a/luni/src/test/java/tests/api/java/net/JarURLConnectionTest.java
+++ b/luni/src/test/java/tests/api/java/net/JarURLConnectionTest.java
@@ -34,6 +34,8 @@ import java.security.cert.Certificate;
import java.util.Collection;
import java.util.Map;
import java.util.Set;
+import java.util.Arrays;
+import java.util.HashSet;
import java.util.jar.Attributes;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
@@ -151,8 +153,7 @@ public class JarURLConnectionTest extends junit.framework.TestCase {
args = {}
)
public void test_getManifest() throws Exception {
-
- String [] expected = {"plus.bmp", "swt.dll"};
+
//URL u = new URL("jar:"
// + BASE.toString()+"/lf.jar!/swt.dll");
@@ -161,15 +162,9 @@ public class JarURLConnectionTest extends junit.framework.TestCase {
juc = (JarURLConnection) u.openConnection();
Manifest manifest = juc.getManifest();
Map<String, Attributes> attr = manifest.getEntries();
- assertEquals(expected.length, attr.size());
- Set<String> keys = attr.keySet();
- String [] result = new String[expected.length];
- keys.toArray(result);
+ assertEquals(new HashSet<String>(Arrays.asList("plus.bmp", "swt.dll")),
+ attr.keySet());
- for(int i = 0; i < result.length; i++) {
- assertEquals(expected[i], result[i]);
- }
-
//URL invURL = new URL("jar:"
// + BASE.toString()+"/InvalidJar.jar!/Test.class");