Index: crypto/encryptor_unittest.cc |
diff --git a/crypto/encryptor_unittest.cc b/crypto/encryptor_unittest.cc |
index 1a99783679f64d4786f01c7e85b4e403b3a0c2aa..79fe2cca1a6758be1296cfe0fcc6d735351ab287 100644 |
--- a/crypto/encryptor_unittest.cc |
+++ b/crypto/encryptor_unittest.cc |
@@ -92,7 +92,7 @@ TEST(EncryptorTest, DecryptWrongKey) { |
// determine the padding length without checking every padding byte, |
// Encryptor::Decrypt() will still return true. This is the case for NSS |
// (crbug.com/124434). |
-#if !defined(USE_NSS) && !defined(OS_WIN) && !defined(OS_MACOSX) |
+#if !defined(USE_NSS_CERTS) && !defined(OS_WIN) && !defined(OS_MACOSX) |
crypto::Encryptor decryptor; |
EXPECT_TRUE(decryptor.Init(wrong_key.get(), crypto::Encryptor::CBC, iv)); |
EXPECT_FALSE(decryptor.Decrypt(ciphertext, &decrypted)); |