From: umherirrender Date: Wed, 17 Apr 2013 18:11:34 +0000 (+0200) Subject: Add missing braces to for in wfGetCallerTest X-Git-Tag: 1.31.0-rc.0~19971^2 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/journal.php?a=commitdiff_plain;h=e31e80dee1cd7c280020e92e42b027c5b3d57af5;p=lhc%2Fweb%2Fwiklou.git Add missing braces to for in wfGetCallerTest Change-Id: I14b7abb90e2574022c792a6874390eee87d48708 --- diff --git a/tests/phpunit/includes/GlobalFunctions/wfGetCallerTest.php b/tests/phpunit/includes/GlobalFunctions/wfGetCallerTest.php index 58cf6b95d9..87193faee3 100644 --- a/tests/phpunit/includes/GlobalFunctions/wfGetCallerTest.php +++ b/tests/phpunit/includes/GlobalFunctions/wfGetCallerTest.php @@ -29,7 +29,8 @@ class WfGetCallerTest extends MediaWikiTestCase { $this->assertEquals( 'WfGetCallerTest::testN', self::intermediateFunction( 2, 0 ) ); $this->assertEquals( 'WfGetCallerTest::intermediateFunction', self::intermediateFunction( 1, 0 ) ); - for ( $i = 0; $i < 10; $i++ ) + for ( $i = 0; $i < 10; $i++ ) { $this->assertEquals( 'WfGetCallerTest::intermediateFunction', self::intermediateFunction( $i + 1, $i ) ); + } } }