Fix tests error/failures
- Fix undenifed index: author-network notice - Fix assertion mismatch in testApiDirectMessagesNewWithUserId
This commit is contained in:
parent
b2b984433c
commit
3a89ab199b
1 changed files with 3 additions and 1 deletions
|
@ -2338,6 +2338,7 @@ class ApiTest extends DatabaseTest
|
||||||
'body' => '',
|
'body' => '',
|
||||||
'verb' => '',
|
'verb' => '',
|
||||||
'author-id' => 42,
|
'author-id' => 42,
|
||||||
|
'author-network' => \Friendica\Core\Protocol::DFRN,
|
||||||
'plink' => '',
|
'plink' => '',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
@ -2359,6 +2360,7 @@ class ApiTest extends DatabaseTest
|
||||||
'body' => '',
|
'body' => '',
|
||||||
'verb' => '',
|
'verb' => '',
|
||||||
'author-id' => 42,
|
'author-id' => 42,
|
||||||
|
'author-network' => \Friendica\Core\Protocol::DFRN,
|
||||||
'plink' => '',
|
'plink' => '',
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
@ -2729,7 +2731,7 @@ class ApiTest extends DatabaseTest
|
||||||
public function testApiDirectMessagesNewWithUserId()
|
public function testApiDirectMessagesNewWithUserId()
|
||||||
{
|
{
|
||||||
$_POST['text'] = 'message_text';
|
$_POST['text'] = 'message_text';
|
||||||
$_POST['user_id'] = $this->friendUser['id'];
|
$_POST['user_id'] = $this->otherUser['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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue