diff options
| -rw-r--r-- | core/tests/coretests/src/android/net/SSLSessionCacheTest.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/tests/coretests/src/android/net/SSLSessionCacheTest.java b/core/tests/coretests/src/android/net/SSLSessionCacheTest.java index ec130e049676..11d066b3afb0 100644 --- a/core/tests/coretests/src/android/net/SSLSessionCacheTest.java +++ b/core/tests/coretests/src/android/net/SSLSessionCacheTest.java @@ -44,12 +44,9 @@ public class SSLSessionCacheTest extends TestCase { try { SSLSessionCache.install(new SSLSessionCache(mock), ctx); - clientCtx.getSession("www.foogle.com", 443); - Mockito.verify(mock).getSessionData(Mockito.anyString(), Mockito.anyInt()); } finally { // Restore cacheless behaviour. SSLSessionCache.install(null, ctx); - clientCtx.getSession("www.foogle.com", 443); Mockito.verifyNoMoreInteractions(mock); } } |