Make lines short to pass phpcs in 3 files under tests/phpunit/includes/
[lhc/web/wiklou.git] / tests / phpunit / includes / debug / logger / monolog / AvroFormatterTest.php
index 44242ed..b0df616 100644 (file)
@@ -34,7 +34,10 @@ class AvroFormatterTest extends MediaWikiTestCase {
 
        public function testSchemaNotAvailable() {
                $formatter = new AvroFormatter( array() );
-               $this->setExpectedException( 'PHPUnit_Framework_Error_Notice', "The schema for channel 'marty' is not available" );
+               $this->setExpectedException(
+                       'PHPUnit_Framework_Error_Notice',
+                       "The schema for channel 'marty' is not available"
+               );
                $formatter->format( array( 'channel' => 'marty' ) );
        }