Fix build breakage due to SSLDefaultConfigurationAsserts rename.
libcore's SSLDefaultConfigurationAsserts was renamed and refactored into SSLConfigurationAsserts in 782740701db73dd2dc4fef9df8cde270b0e631a4. This CL adjusts the affected CTS test for android.net.SSLCertificateSocketFactory accordingly. Change-Id: I663042e7c08ad616b2dedc226acda54c95fd6968
This commit is contained in:
@@ -26,7 +26,7 @@ import javax.net.ssl.SSLPeerUnverifiedException;
|
||||
import android.net.SSLCertificateSocketFactory;
|
||||
import android.test.AndroidTestCase;
|
||||
|
||||
import libcore.javax.net.ssl.SSLDefaultConfigurationAsserts;
|
||||
import libcore.javax.net.ssl.SSLConfigurationAsserts;
|
||||
|
||||
public class SSLCertificateSocketFactoryTest extends AndroidTestCase {
|
||||
private SSLCertificateSocketFactory mFactory;
|
||||
@@ -40,7 +40,7 @@ public class SSLCertificateSocketFactoryTest extends AndroidTestCase {
|
||||
}
|
||||
|
||||
public void testDefaultConfiguration() throws Exception {
|
||||
SSLDefaultConfigurationAsserts.assertSSLSocketFactory(mFactory);
|
||||
SSLConfigurationAsserts.assertSSLSocketFactoryDefaultConfiguration(mFactory);
|
||||
}
|
||||
|
||||
public void testAccessProperties() throws Exception {
|
||||
|
||||
Reference in New Issue
Block a user