We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a300fe0 commit 7659310Copy full SHA for 7659310
src/Model/Page.php
@@ -379,7 +379,9 @@ public function getRevisionIdAtDate(DateTime $date): ?int
379
*/
380
public function getCheckWikiErrors(): array
381
{
382
- return $this->repository->getCheckWikiErrors($this);
+ return [];
383
+ // FIXME: Re-enable after solving T413013
384
+ // return $this->repository->getCheckWikiErrors($this);
385
}
386
387
/**
tests/Model/PageTest.php
@@ -229,6 +229,7 @@ public function testUsersEdits(): void
229
230
public function testErrors(): void
231
232
+ $this->markTestSkipped( 'Broken until T413013 is fixed' );
233
$checkWikiErrors = [
234
[
235
'error' => '61',
0 commit comments