Merge "Add a 'revdelete-selected-file' message on Special:RevisionDelete"
[lhc/web/wiklou.git] / tests / phpunit / includes / diff / DiffOpTest.php
index fe2c566..d89b89f 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 //Load our FakeDiffOp
-require_once( __DIR__ . DIRECTORY_SEPARATOR . 'FakeDiffOp.php' );
+require_once __DIR__ . DIRECTORY_SEPARATOR . 'FakeDiffOp.php';
 
 /**
  * @licence GNU GPL v2+
@@ -44,10 +44,10 @@ class DiffOpTest extends MediaWikiTestCase {
        public function testGetClosingWithParameter() {
                $obj = new FakeDiffOp();
                $obj->closing = array( 'foo', 'bar', 'baz' );
-               $this->assertEquals( 'foo' , $obj->getClosing( 0 ) );
-               $this->assertEquals( 'bar' , $obj->getClosing( 1 ) );
-               $this->assertEquals( 'baz' , $obj->getClosing( 2 ) );
-               $this->assertEquals( null , $obj->getClosing( 3 ) );
+               $this->assertEquals( 'foo', $obj->getClosing( 0 ) );
+               $this->assertEquals( 'bar', $obj->getClosing( 1 ) );
+               $this->assertEquals( 'baz', $obj->getClosing( 2 ) );
+               $this->assertEquals( null, $obj->getClosing( 3 ) );
        }
 
        /**