Removes summary text from Instant Apps details

Test: Robolectric test to ensure header item is GONE.

Bug: 36512295
Change-Id: I020e90d6521c853e67ae600e5786445a8469a934
(cherry picked from commit 14a258443f)
This commit is contained in:
Jesse Evans
2017-03-28 10:22:12 -07:00
parent e52758588a
commit 15c7f5fda4
3 changed files with 11 additions and 6 deletions

View File

@@ -287,6 +287,8 @@ public class AppHeaderControllerTest {
assertThat(label.getVisibility()).isEqualTo(View.VISIBLE);
assertThat(label.getText()).isEqualTo(
appHeader.getResources().getString(R.string.install_type_instant));
assertThat(appHeader.findViewById(R.id.app_detail_summary).getVisibility())
.isEqualTo(View.GONE);
}
@Test