Fix last undefined variable/index messages in tests

This commit is contained in:
Hypolite Petovan 2018-07-01 15:08:14 -04:00
parent f91e7c9f17
commit 39b61da05d
1 changed files with 2 additions and 2 deletions

View File

@ -3373,7 +3373,7 @@ class ApiTest extends DatabaseTest
*/ */
public function testApiShareAsRetweet() public function testApiShareAsRetweet()
{ {
$item = []; $item = ['body' => ''];
$result = api_share_as_retweet($item); $result = api_share_as_retweet($item);
$this->assertFalse($result); $this->assertFalse($result);
} }
@ -3413,7 +3413,7 @@ class ApiTest extends DatabaseTest
*/ */
public function testApiInReplyTo() public function testApiInReplyTo()
{ {
$result = api_in_reply_to([]); $result = api_in_reply_to(['id' => 0, 'parent' => 0, 'uri' => '', 'thr-parent' => '']);
$this->assertArrayHasKey('status_id', $result); $this->assertArrayHasKey('status_id', $result);
$this->assertArrayHasKey('user_id', $result); $this->assertArrayHasKey('user_id', $result);
$this->assertArrayHasKey('status_id_str', $result); $this->assertArrayHasKey('status_id_str', $result);