Actually run QueryAllInfoboxesTest (#43)

This commit is contained in:
Universal Omega 2021-12-16 14:13:54 -07:00 committed by GitHub
parent 1e8dad42d2
commit 4a0bac951a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -25,7 +25,7 @@ class ApiQueryAllInfoboxes extends ApiQueryBase {
$data = $cache->getWithSetCallback( $cachekey, self::CACHE_TTL, function () use ( $db ) {
$out = [];
$res = ( new AllinfoboxesQueryPage() )->doQuery();
$res = ( new AllInfoboxesQueryPage() )->doQuery();
foreach ( $res as $row ) {
$out[] = [
'pageid' => $row->value,

View file

@ -1,6 +1,8 @@
<?php
/**
* @group PortableInfobox
* @group Database
* @group medium
* @coversDefaultClass ApiQueryAllInfoboxes
*/