mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-27 09:41:46 +00:00
Actually run QueryAllInfoboxesTest (#43)
This commit is contained in:
parent
1e8dad42d2
commit
4a0bac951a
|
@ -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,
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @group PortableInfobox
|
||||
* @group Database
|
||||
* @group medium
|
||||
* @coversDefaultClass ApiQueryAllInfoboxes
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue