mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2025-01-03 14:32:40 +00:00
Fix failing test
This commit is contained in:
parent
5b8f23441c
commit
b778e8eacd
1 changed files with 3 additions and 3 deletions
|
@ -163,9 +163,9 @@ class TestFeed extends \PHPUnit\Framework\TestCase {
|
|||
$this->assertNotEquals("", $f->data->items[5]->urlContentHash);
|
||||
$this->assertNotEquals("", $f->data->items[5]->titleContentHash);
|
||||
// check null IDs
|
||||
$this->assertSame("", $f->data->items[3]->id);
|
||||
$this->assertSame("", $f->data->items[4]->id);
|
||||
$this->assertSame("", $f->data->items[5]->id);
|
||||
$this->assertSame(null, $f->data->items[3]->id);
|
||||
$this->assertSame(null, $f->data->items[4]->id);
|
||||
$this->assertSame(null, $f->data->items[5]->id);
|
||||
}
|
||||
|
||||
function testParseEntityExpansionAttack() {
|
||||
|
|
Loading…
Reference in a new issue