summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-09-30 18:21:58 -0400
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-09-30 18:21:58 -0400
commit910363bd8d50c2a5558a71e47377928265c1219e (patch)
treee97f5263149b3323d9353ac4db735e40be7aef25
parentb5b7f4ba9c8e5da38d023aa5b5ae61c8392c2e99 (diff)
parentb5dc3f1ff84d55e02b8c6e8e59878d34c2638a48 (diff)
downloadandroid_dalvik-910363bd8d50c2a5558a71e47377928265c1219e.tar.gz
android_dalvik-910363bd8d50c2a5558a71e47377928265c1219e.tar.bz2
android_dalvik-910363bd8d50c2a5558a71e47377928265c1219e.zip
Merge change Ib5dc3f1f into eclair
* changes: Fixing a lame test that was relying on hashmap iteration order.
-rw-r--r--libcore/luni/src/test/java/tests/api/java/net/JarURLConnectionTest.java15
1 files changed, 5 insertions, 10 deletions
diff --git a/libcore/luni/src/test/java/tests/api/java/net/JarURLConnectionTest.java b/libcore/luni/src/test/java/tests/api/java/net/JarURLConnectionTest.java
index 8303db357..7a67bf848 100644
--- a/libcore/luni/src/test/java/tests/api/java/net/JarURLConnectionTest.java
+++ b/libcore/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");