Fixing tests
This commit is contained in:
parent
ce161386e7
commit
f5a3f8039d
|
@ -1387,7 +1387,7 @@ function api_direct_messages_new($type)
|
||||||
|
|
||||||
$sender = DI::twitterUser()->createFromUserId($uid, true)->toArray();
|
$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)) {
|
if (empty($cid)) {
|
||||||
throw new NotFoundException('Recipient not found');
|
throw new NotFoundException('Recipient not found');
|
||||||
}
|
}
|
||||||
|
|
|
@ -2499,8 +2499,8 @@ class ApiTest extends FixtureTest
|
||||||
*/
|
*/
|
||||||
public function testApiDirectMessagesNewWithUserId()
|
public function testApiDirectMessagesNewWithUserId()
|
||||||
{
|
{
|
||||||
$_POST['text'] = 'message_text';
|
$_POST['text'] = 'message_text';
|
||||||
$_POST['user_id'] = $this->otherUser['id'];
|
$_REQUEST['user_id'] = $this->otherUser['id'];
|
||||||
$result = api_direct_messages_new('json');
|
$result = api_direct_messages_new('json');
|
||||||
self::assertEquals(['direct_message' => ['error' => -1]], $result);
|
self::assertEquals(['direct_message' => ['error' => -1]], $result);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user