Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(563)

Unified Diff: net/quic/crypto/crypto_server_test.cc

Issue 1780983002: Provide valid port on HPKP reports for QUIC connections (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix missed tests Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/quic/crypto/proof_test.cc » ('j') | net/quic/crypto/proof_verifier_chromium.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/crypto/crypto_server_test.cc
diff --git a/net/quic/crypto/crypto_server_test.cc b/net/quic/crypto/crypto_server_test.cc
index 8c0e3ee1e5d997115e3f66a184502fce07634114..41b02fac58b7fcc19101b9af90918948ac6506cc 100644
--- a/net/quic/crypto/crypto_server_test.cc
+++ b/net/quic/crypto/crypto_server_test.cc
@@ -877,10 +877,11 @@ TEST_P(CryptoServerTest, ProofForSuppliedServerConfig) {
scoped_ptr<ProofVerifyDetails> details;
string error_details;
DummyProofVerifierCallback callback;
- EXPECT_EQ(QUIC_SUCCESS, proof_verifier->VerifyProof(
- "test.example.com", scfg_str.as_string(), certs,
- "", proof.as_string(), verify_context.get(),
- &error_details, &details, &callback));
+ EXPECT_EQ(QUIC_SUCCESS,
+ proof_verifier->VerifyProof("test.example.com", 443,
+ scfg_str.as_string(), certs, "",
+ proof.as_string(), verify_context.get(),
+ &error_details, &details, &callback));
}
TEST_P(CryptoServerTest, RejectInvalidXlct) {
« no previous file with comments | « no previous file | net/quic/crypto/proof_test.cc » ('j') | net/quic/crypto/proof_verifier_chromium.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698