From: Chad Horohoe Date: Sun, 16 Oct 2011 22:25:41 +0000 (+0000) Subject: Forgot lowercase again, arrggghhhh X-Git-Tag: 1.31.0-rc.0~27056 X-Git-Url: http://git.heureux-cyclage.org/?a=commitdiff_plain;h=a5979c1fc9009a1775159ac3e1782c2c1b5d3b5e;p=lhc%2Fweb%2Fwiklou.git Forgot lowercase again, arrggghhhh --- diff --git a/tests/phpunit/includes/GlobalFunctions/wfShorthandToInteger.php b/tests/phpunit/includes/GlobalFunctions/wfShorthandToInteger.php index dc3fabb3df..1df26d2cb8 100644 --- a/tests/phpunit/includes/GlobalFunctions/wfShorthandToInteger.php +++ b/tests/phpunit/includes/GlobalFunctions/wfShorthandToInteger.php @@ -21,6 +21,7 @@ class wfShorthandToIntegerTest extends MediaWikiTestCase { array( '1M', 1024 * 1024, 'One meg uppercased' ), array( '1m', 1024 * 1024, 'One meg lowercased' ), array( '1K', 1024, 'One kb uppercased' ), + array( '1k', 1024, 'One kb lowercased' ), ); }