From: Antoine Musso Date: Thu, 3 Oct 2013 08:35:01 +0000 (+0200) Subject: tests: remove date from @author docs statements X-Git-Tag: 1.31.0-rc.0~18561^2 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=3c8674bdff287dba1c534b819c9bba3771c71649;p=lhc%2Fweb%2Fwiklou.git tests: remove date from @author docs statements phpunit interprets '@author' documentation statements to generate group. Appending the year to the author name created duplicates entry: $ php phpunit.php --list-groups|grep Antoine Antoine Musso Antoine Musso, 2012 $ Removing the date fix the duplication. I have also inserted corresponding '@copyright' statements. Change-Id: I65b19adb59c4894314ce68a0c815c5d3e4c30df0 --- diff --git a/tests/phpunit/structure/ResourcesTest.php b/tests/phpunit/structure/ResourcesTest.php index 3af805a958..fe823fa4ce 100644 --- a/tests/phpunit/structure/ResourcesTest.php +++ b/tests/phpunit/structure/ResourcesTest.php @@ -3,10 +3,15 @@ * Sanity checks for making sure registered resources are sane. * * @file - * @author Niklas Laxström, 2012 - * @author Antoine Musso, 2012 - * @author Santhosh Thottingal, 2012 - * @author Timo Tijhof, 2012 + * @author Antoine Musso + * @author Niklas Laxström + * @author Santhosh Thottingal + * @author Timo Tijhof + * @copyright © 2012, Antoine Musso + * @copyright © 2012, Niklas Laxström + * @copyright © 2012, Santhosh Thottingal + * @copyright © 2012, Timo Tijhof + * * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later */ class ResourcesTest extends MediaWikiTestCase {