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

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

Issue 1415933006: QUIC - delete #ifdef USE_OPENSSL in unittests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix minor typos Created 5 years, 1 month 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
Index: net/quic/crypto/proof_test.cc
diff --git a/net/quic/crypto/proof_test.cc b/net/quic/crypto/proof_test.cc
index 67055be07fd45f60d6bfae684829a5d07b138e14..9a84a51928fa3f3214314d2eab118877435c31e2 100644
--- a/net/quic/crypto/proof_test.cc
+++ b/net/quic/crypto/proof_test.cc
@@ -236,7 +236,7 @@ TEST(ProofTest, VerifyRSAKnownAnswerTest) {
};
scoped_ptr<ProofVerifier> verifier(
- CryptoTestUtils::ProofVerifierForTesting());
+ CryptoTestUtils::ProofVerifierRealForTesting());
const string server_config = "server config bytes";
const string hostname = "test.example.com";
@@ -318,7 +318,7 @@ TEST(ProofTest, VerifyECDSAKnownAnswerTest) {
};
scoped_ptr<ProofVerifier> verifier(
- CryptoTestUtils::ProofVerifierForTesting());
+ CryptoTestUtils::ProofVerifierRealForTesting());
const string server_config = "server config bytes";
const string hostname = "test.example.com";

Powered by Google App Engine
This is Rietveld 408576698