From: Platonides Date: Fri, 24 Dec 2010 12:08:47 +0000 (+0000) Subject: Add a couple of comments from my WC X-Git-Tag: 1.31.0-rc.0~33116 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=ac322a21e1d51fe494a8b9e12a619519b781383a;p=lhc%2Fweb%2Fwiklou.git Add a couple of comments from my WC --- 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() );