Chromium Code Reviews| Index: chrome/browser/policy/policy_browsertest.cc |
| diff --git a/chrome/browser/policy/policy_browsertest.cc b/chrome/browser/policy/policy_browsertest.cc |
| index 6817c64effadeedef78139e1ed77c65f9fed9c6f..48373194ea545e0b2fed6bf0d5c9bc1ddf22b67a 100644 |
| --- a/chrome/browser/policy/policy_browsertest.cc |
| +++ b/chrome/browser/policy/policy_browsertest.cc |
| @@ -2730,12 +2730,12 @@ uint16_t GetSSLVersionFallbackMin(Profile* profile) { |
| IN_PROC_BROWSER_TEST_F(PolicyTest, SSLVersionFallbackMin) { |
| PrefService* prefs = g_browser_process->local_state(); |
| - const std::string new_value("tls1.2"); |
| + const std::string new_value("tls1.1"); |
|
davidben
2016/02/10 22:14:29
(This changed because the default is now tls1.2.)
|
| const std::string default_value( |
| prefs->GetString(ssl_config::prefs::kSSLVersionFallbackMin)); |
| EXPECT_NE(default_value, new_value); |
| - EXPECT_NE(net::SSL_PROTOCOL_VERSION_TLS1_2, |
| + EXPECT_EQ(net::SSL_PROTOCOL_VERSION_TLS1_2, |
| GetSSLVersionFallbackMin(browser()->profile())); |
| PolicyMap policies; |
| @@ -2747,7 +2747,7 @@ IN_PROC_BROWSER_TEST_F(PolicyTest, SSLVersionFallbackMin) { |
| NULL); |
| UpdateProviderPolicy(policies); |
| - EXPECT_EQ(net::SSL_PROTOCOL_VERSION_TLS1_2, |
| + EXPECT_EQ(net::SSL_PROTOCOL_VERSION_TLS1_1, |
| GetSSLVersionFallbackMin(browser()->profile())); |
| } |