| Index: net/quic/core/crypto/cert_compressor_test.cc
|
| diff --git a/net/quic/core/crypto/cert_compressor_test.cc b/net/quic/core/crypto/cert_compressor_test.cc
|
| index 11da03395ff23fb524d676954ee028427d1719b9..2ab9094c8d5806789691f78308da9e95e0892fbf 100644
|
| --- a/net/quic/core/crypto/cert_compressor_test.cc
|
| +++ b/net/quic/core/crypto/cert_compressor_test.cc
|
| @@ -49,7 +49,7 @@ TEST(CertCompressor, Common) {
|
| chain.push_back("testcert");
|
| static const uint64_t set_hash = 42;
|
| std::unique_ptr<CommonCertSets> common_sets(
|
| - CryptoTestUtils::MockCommonCertSets(chain[0], set_hash, 1));
|
| + crypto_test_utils::MockCommonCertSets(chain[0], set_hash, 1));
|
| const string compressed = CertCompressor::CompressChain(
|
| chain,
|
| StringPiece(reinterpret_cast<const char*>(&set_hash), sizeof(set_hash)),
|
| @@ -115,7 +115,7 @@ TEST(CertCompressor, BadInputs) {
|
| cached_certs, nullptr, &chain));
|
|
|
| std::unique_ptr<CommonCertSets> common_sets(
|
| - CryptoTestUtils::MockCommonCertSets("foo", 42, 1));
|
| + crypto_test_utils::MockCommonCertSets("foo", 42, 1));
|
|
|
| /* incorrect hash and index */
|
| EXPECT_FALSE(CertCompressor::DecompressChain(
|
|
|