Index: chrome/browser/chromeos/policy/variations_service_policy_browsertest.cc |
diff --git a/chrome/browser/chromeos/policy/variations_service_policy_browsertest.cc b/chrome/browser/chromeos/policy/variations_service_policy_browsertest.cc |
index 7cb63abca91305a02a0e03e56e5350d513958158..a997ec94fce13fa7dbe37d9cee4f906880d7746a 100644 |
--- a/chrome/browser/chromeos/policy/variations_service_policy_browsertest.cc |
+++ b/chrome/browser/chromeos/policy/variations_service_policy_browsertest.cc |
@@ -44,7 +44,8 @@ IN_PROC_BROWSER_TEST_F(VariationsServiceDevicePolicyTest, VariationsURLValid) { |
// Device policy has updated the cros settings. |
const GURL url = chrome_variations::VariationsService::GetVariationsServerURL( |
g_browser_process->local_state(), std::string()); |
- EXPECT_TRUE(base::StartsWithASCII(url.spec(), default_variations_url, true)); |
+ EXPECT_TRUE(base::StartsWith(url.spec(), default_variations_url, |
+ base::CompareCase::SENSITIVE)); |
std::string value; |
EXPECT_TRUE(net::GetValueForKeyInQuery(url, "restrict", &value)); |
EXPECT_EQ("restricted", value); |