Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 81bf49a5 authored by Adam Vartanian's avatar Adam Vartanian Committed by android-build-merger
Browse files

Merge "Streamline testInstall_compatibleContext()" am: 476d58c6 am: 28868907 am: 5cba3b34

am: 10bb021b

Change-Id: I6f6823bba6ca3071b942010c8181834195b632e6
parents 5d708950 10bb021b
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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);
        }
    }