commit | d5c3928b6ced5eb2b68b5637c84464dd7981abdb | [log] [tgz] |
---|---|---|
author | Kenny Root <kroot@google.com> | Tue Jan 14 22:50:45 2014 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue Jan 14 22:50:46 2014 +0000 |
tree | 84de800b8b85f01e1dbd3dace33567f027592466 | |
parent | 7f46d8400a45ff2fc08e06b7fc8ea0db5e3f7e5a [diff] | |
parent | bd2bce729257f2d62b9bb4728a11b92c46de0899 [diff] |
Merge "ProviderServiceTest: fix SecureRandom test with late binding"
diff --git a/luni/src/test/java/org/apache/harmony/security/tests/java/security/ProviderServiceTest.java b/luni/src/test/java/org/apache/harmony/security/tests/java/security/ProviderServiceTest.java index bef27ba..f939730 100644 --- a/luni/src/test/java/org/apache/harmony/security/tests/java/security/ProviderServiceTest.java +++ b/luni/src/test/java/org/apache/harmony/security/tests/java/security/ProviderServiceTest.java
@@ -124,13 +124,6 @@ Object o = s.newInstance(null); assertTrue("incorrect instance", o instanceof RandomImpl); - - try { - o = s.newInstance(new Object()); - fail("No expected NoSuchAlgorithmException"); - } catch (NoSuchAlgorithmException e) { - } - } public void testGetAlgorithm() {