[L10n fix] Use whitespace regex for splitting string by delimiter.

BUG: 387197875
Test: manual, logging
Flag: EXEMPT bugfix
Change-Id: Ic36257f33101d5e50496b5ca9e189efa447490f5
This commit is contained in:
Garvita Jain
2025-02-25 09:28:06 +00:00
parent 4e5595050f
commit 08e18d6241
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.