From e754f6803f43ad0e011bd2b58b17826ef858319d Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Sat, 9 Sep 2017 22:50:23 +0200 Subject: [PATCH] Fix return in ParserTestTopLevelSuite::debug wfDebugLog does not return anything Change-Id: I85274a85342036b76a72ba82bb7de1d05382cf14 --- tests/phpunit/suites/ParserTestTopLevelSuite.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } } -- 2.20.1