From ac322a21e1d51fe494a8b9e12a619519b781383a Mon Sep 17 00:00:00 2001 From: Platonides Date: Fri, 24 Dec 2010 12:08:47 +0000 Subject: [PATCH] Add a couple of comments from my WC --- tests/phpunit/includes/GlobalTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/phpunit/includes/GlobalTest.php b/tests/phpunit/includes/GlobalTest.php index d9116dc0ce..599002eed0 100644 --- a/tests/phpunit/includes/GlobalTest.php +++ b/tests/phpunit/includes/GlobalTest.php @@ -43,13 +43,13 @@ class GlobalTest extends PHPUnit_Framework_TestCase { $f = fopen( $wgReadOnlyFile, "wt" ); fwrite( $f, 'Message' ); fclose( $f ); - $wgReadOnly = null; + $wgReadOnly = null; # Check on $wgReadOnlyFile $this->assertTrue( wfReadOnly() ); - $this->assertTrue( wfReadOnly() ); + $this->assertTrue( wfReadOnly() ); # Check cached unlink( $wgReadOnlyFile ); - $wgReadOnly = null; + $wgReadOnly = null; # Clean cache $this->assertFalse( wfReadOnly() ); $this->assertFalse( wfReadOnly() ); -- 2.20.1