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

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

Merge "Streamline testInstall_compatibleContext()"

am: 476d58c6

Change-Id: I99631c3166ced487e990f28f0e7c10c180d6473a
parents 41d6995e 476d58c6
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);
        }
    }