Index: trunk/phase3/tests/phpunit/includes/GlobalFunctions/wfShorthandToInteger.php |
— | — | @@ -18,6 +18,7 @@ |
19 | 19 | array( ' ', -1, 'String of spaces' ), |
20 | 20 | array( '1G', 1024 * 1024 * 1024, 'One gig uppercased' ), |
21 | 21 | array( '1g', 1024 * 1024 * 1024, 'One gig lowercased' ), |
| 22 | + array( '1M', 1024 * 1024, 'One meg uppercased' ), |
22 | 23 | ); |
23 | 24 | } |
24 | 25 | |