"Aaron Schulz" changed the status of MediaWiki.r112331 to "ok" URL: http://www.mediawiki.org/wiki/Special:Code/MediaWiki/112331
Old status: new New status: ok Commit summary for MediaWiki.r112331: better structure filename error output When dumping an array, PHPUnit limit the number of characters shown. That would just hide the relevant part of the path: 1) StructureTest::testUnitTestFileNamesEndWithTest [...] Array ( + 0 => '/some/path/tests/phpunit/incl...ge.php' + 1 => '/some/path/tests/phpunit/incl...ki.php' ) By stripping the common path ( /some/path/tests/phpunit ), we end up with a more useful output: Array ( + 0 => 'includes/RecentChange.php' + 1 => 'includes/Wiki.php' ) _______________________________________________ MediaWiki-CodeReview mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-codereview
