mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Fixing tests
This commit is contained in:
parent
ce161386e7
commit
f5a3f8039d
2 changed files with 3 additions and 3 deletions
|
@ -1387,7 +1387,7 @@ function api_direct_messages_new($type)
|
|||
|
||||
$sender = DI::twitterUser()->createFromUserId($uid, true)->toArray();
|
||||
|
||||
$cid = BaseApi::getContactIDForSearchterm($_REQUEST['screen_name'] ?? '', $_REQUEST['profileurl'] ?? '', $_REQUEST['user_id'] ?? 0, $uid);
|
||||
$cid = BaseApi::getContactIDForSearchterm($_REQUEST['screen_name'] ?? '', $_REQUEST['profileurl'] ?? '', $_REQUEST['user_id'] ?? 0, 0);
|
||||
if (empty($cid)) {
|
||||
throw new NotFoundException('Recipient not found');
|
||||
}
|
||||
|
|
|
@ -2499,8 +2499,8 @@ class ApiTest extends FixtureTest
|
|||
*/
|
||||
public function testApiDirectMessagesNewWithUserId()
|
||||
{
|
||||
$_POST['text'] = 'message_text';
|
||||
$_POST['user_id'] = $this->otherUser['id'];
|
||||
$_POST['text'] = 'message_text';
|
||||
$_REQUEST['user_id'] = $this->otherUser['id'];
|
||||
$result = api_direct_messages_new('json');
|
||||
self::assertEquals(['direct_message' => ['error' => -1]], $result);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue