From e31e80dee1cd7c280020e92e42b027c5b3d57af5 Mon Sep 17 00:00:00 2001 From: umherirrender Date: Wed, 17 Apr 2013 20:11:34 +0200 Subject: [PATCH] Add missing braces to for in wfGetCallerTest Change-Id: I14b7abb90e2574022c792a6874390eee87d48708 --- tests/phpunit/includes/GlobalFunctions/wfGetCallerTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 ) ); + } } } -- 2.20.1