Commit 7e6d96d0 authored by Nigel Tao's avatar Nigel Tao Committed by Commit Bot

Fix "DefaulApp" typo in test code

Change-Id: I1e5136fcea84af9d3251cd0c5b0c0f47fff975df
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1634589Reviewed-by: default avatarYury Khmel <khmel@chromium.org>
Commit-Queue: Nigel Tao <nigeltao@chromium.org>
Cr-Commit-Position: refs/heads/master@{#664611}
parent d18f5d2b
...@@ -645,17 +645,17 @@ class ArcDefaultAppTest : public ArcAppModelBuilderRecreate { ...@@ -645,17 +645,17 @@ class ArcDefaultAppTest : public ArcAppModelBuilderRecreate {
DISALLOW_COPY_AND_ASSIGN(ArcDefaultAppTest); DISALLOW_COPY_AND_ASSIGN(ArcDefaultAppTest);
}; };
class ArcAppLauncherForDefaulAppTest : public ArcDefaultAppTest { class ArcAppLauncherForDefaultAppTest : public ArcDefaultAppTest {
public: public:
ArcAppLauncherForDefaulAppTest() = default; ArcAppLauncherForDefaultAppTest() = default;
~ArcAppLauncherForDefaulAppTest() override = default; ~ArcAppLauncherForDefaultAppTest() override = default;
protected: protected:
// ArcDefaultAppTest: // ArcDefaultAppTest:
bool IsWaitDefaultAppsNeeded() const override { return false; } bool IsWaitDefaultAppsNeeded() const override { return false; }
private: private:
DISALLOW_COPY_AND_ASSIGN(ArcAppLauncherForDefaulAppTest); DISALLOW_COPY_AND_ASSIGN(ArcAppLauncherForDefaultAppTest);
}; };
class ArcPlayStoreAppTest : public ArcDefaultAppTest { class ArcPlayStoreAppTest : public ArcDefaultAppTest {
...@@ -2555,7 +2555,7 @@ TEST_P(ArcDefaultAppTest, DisableDefaultApps) { ...@@ -2555,7 +2555,7 @@ TEST_P(ArcDefaultAppTest, DisableDefaultApps) {
EXPECT_FALSE(prefs->GetApp(app_id)); EXPECT_FALSE(prefs->GetApp(app_id));
} }
TEST_P(ArcAppLauncherForDefaulAppTest, AppIconUpdated) { TEST_P(ArcAppLauncherForDefaultAppTest, AppIconUpdated) {
ArcAppListPrefs* prefs = ArcAppListPrefs::Get(profile_.get()); ArcAppListPrefs* prefs = ArcAppListPrefs::Get(profile_.get());
ASSERT_NE(nullptr, prefs); ASSERT_NE(nullptr, prefs);
...@@ -2610,7 +2610,7 @@ TEST_P(ArcAppLauncherForDefaulAppTest, AppIconUpdated) { ...@@ -2610,7 +2610,7 @@ TEST_P(ArcAppLauncherForDefaulAppTest, AppIconUpdated) {
// Validates that default app icon can be loaded for non-default dips, that do // Validates that default app icon can be loaded for non-default dips, that do
// not exist in Chrome image. // not exist in Chrome image.
TEST_P(ArcAppLauncherForDefaulAppTest, AppIconNonDefaultDip) { TEST_P(ArcAppLauncherForDefaultAppTest, AppIconNonDefaultDip) {
ArcAppListPrefs* prefs = ArcAppListPrefs::Get(profile_.get()); ArcAppListPrefs* prefs = ArcAppListPrefs::Get(profile_.get());
ASSERT_NE(nullptr, prefs); ASSERT_NE(nullptr, prefs);
...@@ -2630,7 +2630,7 @@ TEST_P(ArcAppLauncherForDefaulAppTest, AppIconNonDefaultDip) { ...@@ -2630,7 +2630,7 @@ TEST_P(ArcAppLauncherForDefaulAppTest, AppIconNonDefaultDip) {
icon_loader.reset(); icon_loader.reset();
} }
TEST_P(ArcAppLauncherForDefaulAppTest, AppLauncherForDefaultApps) { TEST_P(ArcAppLauncherForDefaultAppTest, AppLauncherForDefaultApps) {
ArcAppListPrefs* prefs = ArcAppListPrefs::Get(profile_.get()); ArcAppListPrefs* prefs = ArcAppListPrefs::Get(profile_.get());
ASSERT_NE(nullptr, prefs); ASSERT_NE(nullptr, prefs);
...@@ -2783,7 +2783,7 @@ INSTANTIATE_TEST_SUITE_P(, ...@@ -2783,7 +2783,7 @@ INSTANTIATE_TEST_SUITE_P(,
ArcDefaultAppTest, ArcDefaultAppTest,
::testing::ValuesIn(kUnmanagedArcStates)); ::testing::ValuesIn(kUnmanagedArcStates));
INSTANTIATE_TEST_SUITE_P(, INSTANTIATE_TEST_SUITE_P(,
ArcAppLauncherForDefaulAppTest, ArcAppLauncherForDefaultAppTest,
::testing::ValuesIn(kUnmanagedArcStates)); ::testing::ValuesIn(kUnmanagedArcStates));
INSTANTIATE_TEST_SUITE_P(, INSTANTIATE_TEST_SUITE_P(,
ArcDefaultAppForManagedUserTest, ArcDefaultAppForManagedUserTest,
......
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