Merge "Lower case the first letter of storage type." into oc-dev

This commit is contained in:
Daniel Nishi
2017-04-05 22:06:55 +00:00
committed by Android (Google) Code Review
2 changed files with 3 additions and 3 deletions

View File

@@ -718,7 +718,7 @@ public class InstalledAppDetails extends AppInfoBase
? R.string.storage_type_external ? R.string.storage_type_external
: R.string.storage_type_internal); : R.string.storage_type_internal);
return context.getString(R.string.storage_summary_format, return context.getString(R.string.storage_summary_format,
getSize(context, stats), storageType); getSize(context, stats), storageType.toString().toLowerCase());
} }
} }

View File

@@ -127,7 +127,7 @@ public final class InstalledAppDetailsTest {
when(stats.getTotalBytes()).thenReturn(1L); when(stats.getTotalBytes()).thenReturn(1L);
assertThat(InstalledAppDetails.getStorageSummary(context, stats, true)) assertThat(InstalledAppDetails.getStorageSummary(context, stats, true))
.isEqualTo("1.00B used in External storage"); .isEqualTo("1.00B used in external storage");
} }
@Test @Test
@@ -137,7 +137,7 @@ public final class InstalledAppDetailsTest {
when(stats.getTotalBytes()).thenReturn(1L); when(stats.getTotalBytes()).thenReturn(1L);
assertThat(InstalledAppDetails.getStorageSummary(context, stats, false)) assertThat(InstalledAppDetails.getStorageSummary(context, stats, false))
.isEqualTo("1.00B used in Internal storage"); .isEqualTo("1.00B used in internal storage");
} }
@Test @Test