Fix php code style
[lhc/web/wiklou.git] / tests / phpunit / includes / search / SearchIndexFieldTest.php
index a5a1b7a..bb7508c 100644 (file)
@@ -46,12 +46,11 @@ class SearchIndexFieldTest extends MediaWikiTestCase {
                $this->assertFalse( $field1->merge( $field2 ) );
 
                $field1->setMergeCallback(
-                       function ( $this, $that ) {
+                       function ( $a, $b ) {
                                return "test";
                        }
                );
                $this->assertEquals( "test", $field1->merge( $field2 ) );
-
        }
 
 }