aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/includes/GlobalFunctions/GlobalWithDBTest.php
diff options
context:
space:
mode:
authoraddshore <addshorewiki@gmail.com>2013-10-23 23:51:31 +0100
committerAntoine Musso <hashar@free.fr>2013-10-24 10:31:32 +0200
commitde7af7ac2c651d747221dd322fa9e40956681cb9 (patch)
treefa2f8a07ed4959339a13652b3ed009f85c427e08 /tests/phpunit/includes/GlobalFunctions/GlobalWithDBTest.php
parentc40786cba2d170b8fc24e1dd8b989c87b0feeadc (diff)
downloadmediawikicore-de7af7ac2c651d747221dd322fa9e40956681cb9.tar.gz
mediawikicore-de7af7ac2c651d747221dd322fa9e40956681cb9.zip
Fix scope on all /phpunit test methods
Change-Id: I3ce92463d485a0fb23e464e9a8059330f32d79af
Diffstat (limited to 'tests/phpunit/includes/GlobalFunctions/GlobalWithDBTest.php')
-rw-r--r--tests/phpunit/includes/GlobalFunctions/GlobalWithDBTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/phpunit/includes/GlobalFunctions/GlobalWithDBTest.php b/tests/phpunit/includes/GlobalFunctions/GlobalWithDBTest.php
index 8bd0849b260c..8d1529618da4 100644
--- a/tests/phpunit/includes/GlobalFunctions/GlobalWithDBTest.php
+++ b/tests/phpunit/includes/GlobalFunctions/GlobalWithDBTest.php
@@ -7,7 +7,7 @@ class GlobalWithDBTest extends MediaWikiTestCase {
/**
* @dataProvider provideWfIsBadImageList
*/
- function testWfIsBadImage( $name, $title, $blacklist, $expected, $desc ) {
+ public function testWfIsBadImage( $name, $title, $blacklist, $expected, $desc ) {
$this->assertEquals( $expected, wfIsBadImage( $name, $title, $blacklist ), $desc );
}