Skip to content

Commit 7659310

Browse files
committed
Disable checkwiki errors until we fix the queries
or switch to lint-wiki-dumps Bug: T413013
1 parent a300fe0 commit 7659310

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/Model/Page.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,9 @@ public function getRevisionIdAtDate(DateTime $date): ?int
379379
*/
380380
public function getCheckWikiErrors(): array
381381
{
382-
return $this->repository->getCheckWikiErrors($this);
382+
return [];
383+
// FIXME: Re-enable after solving T413013
384+
// return $this->repository->getCheckWikiErrors($this);
383385
}
384386

385387
/**

tests/Model/PageTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ public function testUsersEdits(): void
229229
*/
230230
public function testErrors(): void
231231
{
232+
$this->markTestSkipped( 'Broken until T413013 is fixed' );
232233
$checkWikiErrors = [
233234
[
234235
'error' => '61',

0 commit comments

Comments
 (0)