Commit 41647287 authored by Alan Cutter's avatar Alan Cutter Committed by Commit Bot

Instantiate missing hosted_app_browsertests

This CL fixes the following warnings thrown by browser_tests:
[test_launcher.cc(1498)] The following parameterized test case is not instantiated: UninstantiatedParamaterizedTestSuite<HostedAppTestWithAutoupgradesDisabled>
[test_launcher.cc(1498)] The following parameterized test case is not instantiated: UninstantiatedParamaterizedTestSuite<HostedAppPWAOnlyTestWithAutoupgradesDisabled>

Change-Id: Iebf53094d7909a16ccd07e9e6150d600203ba5c9
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2053225
Auto-Submit: Alan Cutter <alancutter@chromium.org>
Reviewed-by: default avatarGiovanni Ortuño Urquidi <ortuno@chromium.org>
Commit-Queue: Giovanni Ortuño Urquidi <ortuno@chromium.org>
Cr-Commit-Position: refs/heads/master@{#740919}
parent 4a0477bd
...@@ -2488,6 +2488,14 @@ INSTANTIATE_TEST_SUITE_P(All, ...@@ -2488,6 +2488,14 @@ INSTANTIATE_TEST_SUITE_P(All,
AppType::BOOKMARK_APP, AppType::BOOKMARK_APP,
AppType::WEB_APP)); AppType::WEB_APP));
INSTANTIATE_TEST_SUITE_P(All,
HostedAppTestWithAutoupgradesDisabled,
::testing::Values(AppType::HOSTED_APP));
INSTANTIATE_TEST_SUITE_P(All,
HostedAppPWAOnlyTestWithAutoupgradesDisabled,
::testing::Values(AppType::BOOKMARK_APP));
INSTANTIATE_TEST_SUITE_P( INSTANTIATE_TEST_SUITE_P(
All, All,
HostedAppPWAOnlyTest, HostedAppPWAOnlyTest,
......
...@@ -15,7 +15,7 @@ void CheckMixedContentLoaded(Browser* browser) { ...@@ -15,7 +15,7 @@ void CheckMixedContentLoaded(Browser* browser) {
DCHECK(browser); DCHECK(browser);
ssl_test_util::CheckSecurityState( ssl_test_util::CheckSecurityState(
browser->tab_strip_model()->GetActiveWebContents(), browser->tab_strip_model()->GetActiveWebContents(),
ssl_test_util::CertError::NONE, security_state::NONE, ssl_test_util::CertError::NONE, security_state::WARNING,
ssl_test_util::AuthState::DISPLAYED_INSECURE_CONTENT); ssl_test_util::AuthState::DISPLAYED_INSECURE_CONTENT);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment