summaryrefslogtreecommitdiff
path: root/config_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'config_unittest.cc')
-rw-r--r--config_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/config_unittest.cc b/config_unittest.cc
index 3bc380b..59516af 100644
--- a/config_unittest.cc
+++ b/config_unittest.cc
@@ -150,8 +150,8 @@ class ConfigTest : public testing::Test {
Error::Type expected_type,
const std::string& expected_message_start) {
EXPECT_EQ(expected_type, error.type());
- EXPECT_TRUE(
- base::StartsWithASCII(error.message(), expected_message_start, false));
+ EXPECT_TRUE(base::StartsWith(error.message(), expected_message_start,
+ base::CompareCase::INSENSITIVE_ASCII));
}
protected: