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

Commit 476d58c6 authored by Adam Vartanian's avatar Adam Vartanian Committed by Gerrit Code Review
Browse files

Merge "Streamline testInstall_compatibleContext()"

parents 430dded5 7b2c66b6
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);
        }
    }