Merge "[L10n fix] Use whitespace regex for splitting string by delimiter." into main

This commit is contained in:
Garvita Jain
2025-02-25 17:16:51 -08:00
committed by Android (Google) Code Review
3 changed files with 3 additions and 3 deletions

View File

@@ -86,7 +86,7 @@ public class TopLevelStoragePreferenceControllerTest {
when(mController.getStorageManagerVolumeProvider())
.thenReturn(mStorageManagerVolumeProvider);
final String percentage = NumberFormat.getPercentInstance().format(1);
final String[] freeSpace = Formatter.formatFileSize(mContext, 0).split(" ");
final String[] freeSpace = Formatter.formatFileSize(mContext, 0).split("\\s");
final Preference preference = new Preference(mContext);
// Wait for asynchronous thread to finish, otherwise test will flake.