Merge "Add theme component options to settings keywords."

This commit is contained in:
TreeHugger Robot
2019-07-02 22:51:25 +00:00
committed by Android (Google) Code Review
3 changed files with 6 additions and 7 deletions

View File

@@ -123,7 +123,7 @@ public class WallpaperPreferenceControllerTest {
assertThat(mController.getKeywords())
.contains(mContext.getString(R.string.keywords_wallpaper));
assertThat(mController.getKeywords())
.doesNotContain(mContext.getString(R.string.theme_customization_category));
.doesNotContain(mContext.getString(R.string.keywords_styles));
}
@Test
@@ -136,7 +136,7 @@ public class WallpaperPreferenceControllerTest {
assertThat(mController.getKeywords())
.contains(mContext.getString(R.string.keywords_wallpaper));
assertThat(mController.getKeywords())
.contains(mContext.getString(R.string.theme_customization_category));
.contains(mContext.getString(R.string.keywords_styles));
}
@Test