mirror of
https://github.com/wallabag/wallabag.git
synced 2025-08-01 17:38:38 +00:00
Import: we now skip messages when user is null
This commit is contained in:
parent
48be826ea9
commit
b45b6b6707
3 changed files with 6 additions and 3 deletions
|
@ -183,7 +183,9 @@ JSON;
|
|||
|
||||
$message = new AMQPMessage($body);
|
||||
|
||||
$consumer->execute($message);
|
||||
$res = $consumer->execute($message);
|
||||
|
||||
$this->assertTrue($res);
|
||||
}
|
||||
|
||||
public function testMessageWithEntryProcessed()
|
||||
|
|
|
@ -182,7 +182,7 @@ JSON;
|
|||
|
||||
$res = $consumer->manage($body);
|
||||
|
||||
$this->assertFalse($res);
|
||||
$this->assertTrue($res);
|
||||
}
|
||||
|
||||
public function testMessageWithEntryProcessed()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue