| Index: net/cert/internal/extended_key_usage_unittest.cc
|
| diff --git a/net/cert/internal/extended_key_usage_unittest.cc b/net/cert/internal/extended_key_usage_unittest.cc
|
| index fd6ad5a1ff4c849e495a80dac270359336f41116..525698d30696cd672ac09471558fe0a2b67d7ca0 100644
|
| --- a/net/cert/internal/extended_key_usage_unittest.cc
|
| +++ b/net/cert/internal/extended_key_usage_unittest.cc
|
| @@ -16,7 +16,7 @@ namespace {
|
| // Helper method to check if an EKU is present in a std::vector of EKUs.
|
| bool HasEKU(const std::vector<der::Input>& list, const der::Input& eku) {
|
| for (const auto& oid : list) {
|
| - if (oid.Equals(eku))
|
| + if (oid == eku)
|
| return true;
|
| }
|
| return false;
|
| @@ -62,7 +62,7 @@ TEST(ExtendedKeyUsageTest, RepeatedOid) {
|
| EXPECT_TRUE(ParseEKUExtension(extension, &ekus));
|
| EXPECT_EQ(2u, ekus.size());
|
| for (const auto& eku : ekus) {
|
| - EXPECT_TRUE(eku.Equals(ServerAuth()));
|
| + EXPECT_EQ(ServerAuth(), eku);
|
| }
|
| }
|
|
|
|
|