diff options
author | Sergio Giro <sgiro@google.com> | 2015-06-22 16:24:08 +0100 |
---|---|---|
committer | Sergio Giro <sgiro@google.com> | 2015-06-22 17:16:58 +0100 |
commit | 00d8b573b37f723cd58ba7b6cc220e22f1720d45 (patch) | |
tree | 51bdf949929c9fc08a5f97df960d632b5a9380af /luni | |
parent | 04dd85923b7af9f5009d9aa557f60731e619780a (diff) | |
download | libcore-00d8b573b37f723cd58ba7b6cc220e22f1720d45.zip libcore-00d8b573b37f723cd58ba7b6cc220e22f1720d45.tar.gz libcore-00d8b573b37f723cd58ba7b6cc220e22f1720d45.tar.bz2 |
libcore: remove unnecessary assertion in testNewConstructors_Success
Change-Id: Ib97a6d9a01d30ea708e79fe10d273e1bb752dff9
(cherry picked from commit 14ba1a7bfb28a300ba9679cd9f402ee3cd48c249)
Diffstat (limited to 'luni')
-rw-r--r-- | luni/src/test/java/libcore/java/security/SecureRandomTest.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/luni/src/test/java/libcore/java/security/SecureRandomTest.java b/luni/src/test/java/libcore/java/security/SecureRandomTest.java index cf12120..e296775 100644 --- a/luni/src/test/java/libcore/java/security/SecureRandomTest.java +++ b/luni/src/test/java/libcore/java/security/SecureRandomTest.java @@ -102,7 +102,6 @@ public class SecureRandomTest extends TestCase { public void testNewConstructors_Success() throws Exception { SecureRandom sr1 = new SecureRandom(); - assertNotNull(sr1); assertNotNull(sr1.getProvider()); assertEquals(EXPECTED_PROVIDER, sr1.getProvider().getClass().getName()); test_SecureRandom(sr1); |