| Index: net/ssl/client_cert_store_unittest-inl.h
|
| diff --git a/net/ssl/client_cert_store_unittest-inl.h b/net/ssl/client_cert_store_unittest-inl.h
|
| index b72ba254f841a5224ad332436e8fcfeee2d54f7c..df561f3b9abffe71a1d5919d38d923f3b81690d4 100644
|
| --- a/net/ssl/client_cert_store_unittest-inl.h
|
| +++ b/net/ssl/client_cert_store_unittest-inl.h
|
| @@ -93,7 +93,8 @@ TYPED_TEST_P(ClientCertStoreTest, AllIssuersAllowed) {
|
|
|
| // Verify that certificates are correctly filtered against CertRequestInfo with
|
| // |cert_authorities| containing only |authority_1_DN|.
|
| -TYPED_TEST_P(ClientCertStoreTest, CertAuthorityFiltering) {
|
| +// Flaky: https://crbug.com/716730
|
| +TYPED_TEST_P(ClientCertStoreTest, DISABLED_CertAuthorityFiltering) {
|
| scoped_refptr<X509Certificate> cert_1(
|
| ImportCertFromFile(GetTestCertsDirectory(), "client_1.pem"));
|
| ASSERT_TRUE(cert_1.get());
|
| @@ -129,7 +130,7 @@ TYPED_TEST_P(ClientCertStoreTest, CertAuthorityFiltering) {
|
| REGISTER_TYPED_TEST_CASE_P(ClientCertStoreTest,
|
| EmptyQuery,
|
| AllIssuersAllowed,
|
| - CertAuthorityFiltering);
|
| + DISABLED_CertAuthorityFiltering);
|
|
|
| } // namespace net
|
|
|
|
|