1
0
Fork 0
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:
Nicolas Lœuillet 2017-02-20 09:16:02 +01:00
parent 48be826ea9
commit b45b6b6707
No known key found for this signature in database
GPG key ID: BDC1EFB5CA0145F2
3 changed files with 6 additions and 3 deletions

View file

@ -183,7 +183,9 @@ JSON;
$message = new AMQPMessage($body);
$consumer->execute($message);
$res = $consumer->execute($message);
$this->assertTrue($res);
}
public function testMessageWithEntryProcessed()

View file

@ -182,7 +182,7 @@ JSON;
$res = $consumer->manage($body);
$this->assertFalse($res);
$this->assertTrue($res);
}
public function testMessageWithEntryProcessed()