diff options
author | addshore <addshorewiki@gmail.com> | 2013-10-23 23:51:31 +0100 |
---|---|---|
committer | Antoine Musso <hashar@free.fr> | 2013-10-24 10:31:32 +0200 |
commit | de7af7ac2c651d747221dd322fa9e40956681cb9 (patch) | |
tree | fa2f8a07ed4959339a13652b3ed009f85c427e08 /tests/phpunit/includes/MWFunctionTest.php | |
parent | c40786cba2d170b8fc24e1dd8b989c87b0feeadc (diff) | |
download | mediawikicore-de7af7ac2c651d747221dd322fa9e40956681cb9.tar.gz mediawikicore-de7af7ac2c651d747221dd322fa9e40956681cb9.zip |
Fix scope on all /phpunit test methods
Change-Id: I3ce92463d485a0fb23e464e9a8059330f32d79af
Diffstat (limited to 'tests/phpunit/includes/MWFunctionTest.php')
-rw-r--r-- | tests/phpunit/includes/MWFunctionTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/phpunit/includes/MWFunctionTest.php b/tests/phpunit/includes/MWFunctionTest.php index a44f69eea35f..d86f2c9bc505 100644 --- a/tests/phpunit/includes/MWFunctionTest.php +++ b/tests/phpunit/includes/MWFunctionTest.php @@ -1,7 +1,7 @@ <?php class MWFunctionTest extends MediaWikiTestCase { - function testNewObjFunction() { + public function testNewObjFunction() { $arg1 = 'Foo'; $arg2 = 'Bar'; $arg3 = array( 'Baz' ); |