| Index: net/quic/crypto/proof_test.cc
|
| diff --git a/net/quic/crypto/proof_test.cc b/net/quic/crypto/proof_test.cc
|
| index 903295315c5efc20f7fe5fdca3333f21b072abda..3258c12a8f7c56068a3304d09ba11fde749ba390 100644
|
| --- a/net/quic/crypto/proof_test.cc
|
| +++ b/net/quic/crypto/proof_test.cc
|
| @@ -35,9 +35,10 @@ TEST(Proof, Verify) {
|
| string error_details, signature, first_signature;
|
| CertVerifyResult cert_verify_result;
|
|
|
| - ASSERT_TRUE(source->GetProof(hostname, server_config, &first_certs,
|
| - &first_signature));
|
| - ASSERT_TRUE(source->GetProof(hostname, server_config, &certs, &signature));
|
| + ASSERT_TRUE(source->GetProof(hostname, server_config, false /* no ECDSA */,
|
| + &first_certs, &first_signature));
|
| + ASSERT_TRUE(source->GetProof(hostname, server_config, false /* no ECDSA */,
|
| + &certs, &signature));
|
|
|
| // Check that the proof source is caching correctly:
|
| ASSERT_EQ(first_certs, certs);
|
|
|