From: Umherirrender Date: Sat, 9 Sep 2017 20:50:23 +0000 (+0200) Subject: Fix return in ParserTestTopLevelSuite::debug X-Git-Tag: 1.31.0-rc.0~2166 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22sites_tous%22%29%20.%20%22?a=commitdiff_plain;h=e754f6803f43ad0e011bd2b58b17826ef858319d;p=lhc%2Fweb%2Fwiklou.git Fix return in ParserTestTopLevelSuite::debug wfDebugLog does not return anything Change-Id: I85274a85342036b76a72ba82bb7de1d05382cf14 --- diff --git a/tests/phpunit/suites/ParserTestTopLevelSuite.php b/tests/phpunit/suites/ParserTestTopLevelSuite.php index 4ea1090f6e..07b18f594e 100644 --- a/tests/phpunit/suites/ParserTestTopLevelSuite.php +++ b/tests/phpunit/suites/ParserTestTopLevelSuite.php @@ -155,6 +155,6 @@ class ParserTestTopLevelSuite extends PHPUnit_Framework_TestSuite { * @param string $msg Message to log */ protected static function debug( $msg ) { - return wfDebugLog( 'tests-parser', wfGetCaller() . ' ' . $msg ); + wfDebugLog( 'tests-parser', wfGetCaller() . ' ' . $msg ); } }