Fix dataset ids for otheruser/frienduser
Remove debug
This commit is contained in:
parent
675333f246
commit
b2b984433c
2 changed files with 3 additions and 7 deletions
|
@ -12,8 +12,6 @@ use Friendica\Network\BadRequestException;
|
||||||
use Friendica\Network\HTTPException;
|
use Friendica\Network\HTTPException;
|
||||||
use Friendica\Render\FriendicaSmarty;
|
use Friendica\Render\FriendicaSmarty;
|
||||||
|
|
||||||
require_once 'include/dba.php';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tests for the API functions.
|
* Tests for the API functions.
|
||||||
*
|
*
|
||||||
|
@ -2731,7 +2729,7 @@ class ApiTest extends DatabaseTest
|
||||||
public function testApiDirectMessagesNewWithUserId()
|
public function testApiDirectMessagesNewWithUserId()
|
||||||
{
|
{
|
||||||
$_POST['text'] = 'message_text';
|
$_POST['text'] = 'message_text';
|
||||||
$_POST['user_id'] = $this->otherUser['id'];
|
$_POST['user_id'] = $this->friendUser['id'];
|
||||||
$result = api_direct_messages_new('json');
|
$result = api_direct_messages_new('json');
|
||||||
$this->assertEquals(['direct_message' => ['error' => -1]], $result);
|
$this->assertEquals(['direct_message' => ['error' => -1]], $result);
|
||||||
}
|
}
|
||||||
|
@ -3395,8 +3393,6 @@ class ApiTest extends DatabaseTest
|
||||||
*/
|
*/
|
||||||
public function testApiGetNick()
|
public function testApiGetNick()
|
||||||
{
|
{
|
||||||
var_dump(\dba::inArray(\dba::select('contact')));
|
|
||||||
|
|
||||||
$result = api_get_nick($this->otherUser['nurl']);
|
$result = api_get_nick($this->otherUser['nurl']);
|
||||||
$this->assertEquals('othercontact', $result);
|
$this->assertEquals('othercontact', $result);
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,7 @@ contact:
|
||||||
network: dfrn
|
network: dfrn
|
||||||
-
|
-
|
||||||
id: 43
|
id: 43
|
||||||
uid: 42
|
uid: 0
|
||||||
# Having the same name and nick allows us to test
|
# Having the same name and nick allows us to test
|
||||||
# the fallback to api_get_nick() in api_get_user()
|
# the fallback to api_get_nick() in api_get_user()
|
||||||
name: othercontact
|
name: othercontact
|
||||||
|
@ -48,7 +48,7 @@ contact:
|
||||||
network: dfrn
|
network: dfrn
|
||||||
-
|
-
|
||||||
id: 44
|
id: 44
|
||||||
uid: 0
|
uid: 42
|
||||||
name: Friend contact
|
name: Friend contact
|
||||||
nick: friendcontact
|
nick: friendcontact
|
||||||
self: 0
|
self: 0
|
||||||
|
|
Loading…
Reference in a new issue