| Index: ios/chrome/browser/ui/settings/clear_browsing_data_collection_view_controller_unittest.mm
|
| diff --git a/ios/chrome/browser/ui/settings/clear_browsing_data_collection_view_controller_unittest.mm b/ios/chrome/browser/ui/settings/clear_browsing_data_collection_view_controller_unittest.mm
|
| index 87724688de40f73e2a7ecbd5716c5cb465a55d8f..75cf9bea67ff090935cdb15fe9c4613760d72c14 100644
|
| --- a/ios/chrome/browser/ui/settings/clear_browsing_data_collection_view_controller_unittest.mm
|
| +++ b/ios/chrome/browser/ui/settings/clear_browsing_data_collection_view_controller_unittest.mm
|
| @@ -247,8 +247,8 @@ TEST_F(ClearBrowsingDataCollectionViewControllerTest,
|
| int cache_size;
|
| NSString* expected_output;
|
| } kTestCases[] = {
|
| - {0, @"less than 1 MB"},
|
| - {(1 << 20) - 1, @"less than 1 MB"},
|
| + {0, @"Less than 1 MB"},
|
| + {(1 << 20) - 1, @"Less than 1 MB"},
|
| {(1 << 20), @"1 MB"},
|
| {(1 << 20) + (1 << 19), @"1.5 MB"},
|
| {(1 << 21), @"2 MB"},
|
| @@ -287,12 +287,12 @@ TEST_F(ClearBrowsingDataCollectionViewControllerTest,
|
| int cache_size;
|
| NSString* expected_output;
|
| } kTestCases[] = {
|
| - {0, @"less than 1 MB"},
|
| - {(1 << 20) - 1, @"less than 1 MB"},
|
| - {(1 << 20), @"less than 1 MB"},
|
| - {(1 << 20) + (1 << 19), @"less than 1.5 MB"},
|
| - {(1 << 21), @"less than 2 MB"},
|
| - {(1 << 30), @"less than 1 GB"}
|
| + {0, @"Less than 1 MB"},
|
| + {(1 << 20) - 1, @"Less than 1 MB"},
|
| + {(1 << 20), @"Less than 1 MB"},
|
| + {(1 << 20) + (1 << 19), @"Less than 1.5 MB"},
|
| + {(1 << 21), @"Less than 2 MB"},
|
| + {(1 << 30), @"Less than 1 GB"}
|
| };
|
| // clang-format on
|
|
|
|
|