From a5979c1fc9009a1775159ac3e1782c2c1b5d3b5e Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Sun, 16 Oct 2011 22:25:41 +0000 Subject: [PATCH] Forgot lowercase again, arrggghhhh --- tests/phpunit/includes/GlobalFunctions/wfShorthandToInteger.php | 1 + 1 file changed, 1 insertion(+) 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' ), ); } -- 2.20.1