Merge "Chinese Conversion Table Update 2017-6"
[lhc/web/wiklou.git] / tests / phpunit / includes / jobqueue / JobQueueMemoryTest.php
index 178a6a6..edba75c 100644 (file)
@@ -6,26 +6,28 @@
  * @group JobQueue
  *
  * @licence GNU GPL v2+
- * @author Thiemo Mättig
+ * @author Thiemo Kreuz
  */
 class JobQueueMemoryTest extends PHPUnit_Framework_TestCase {
 
+       use MediaWikiCoversValidator;
+
        /**
         * @return JobQueueMemory
         */
        private function newJobQueue() {
-               return JobQueue::factory( array(
+               return JobQueue::factory( [
                        'class' => 'JobQueueMemory',
                        'wiki' => wfWikiID(),
                        'type' => 'null',
-               ) );
+               ] );
        }
 
        private function newJobSpecification() {
                return new JobSpecification(
                        'null',
-                       array( 'customParameter' => null ),
-                       array(),
+                       [ 'customParameter' => null ],
+                       [],
                        Title::newFromText( 'Custom title' )
                );
        }