Fixing tests

This commit is contained in:
Michael 2021-11-24 23:16:07 +00:00
parent 242fd646d2
commit 328a6c9e4e
1 changed files with 6 additions and 6 deletions

View File

@ -948,11 +948,11 @@ class ApiTest extends FixtureTest
*/
public function testApiStatusesUpdate()
{
$_GET['status'] = 'Status content #friendica';
$_GET['in_reply_to_status_id'] = -1;
$_GET['lat'] = 48;
$_GET['long'] = 7;
$_FILES = [
$_REQUEST['status'] = 'Status content #friendica';
$_REQUEST['in_reply_to_status_id'] = -1;
$_REQUEST['lat'] = 48;
$_REQUEST['long'] = 7;
$_FILES = [
'media' => [
'id' => 666,
'size' => 666,
@ -975,7 +975,7 @@ class ApiTest extends FixtureTest
*/
public function testApiStatusesUpdateWithHtml()
{
$_GET['htmlstatus'] = '<b>Status content</b>';
$_REQUEST['htmlstatus'] = '<b>Status content</b>';
$result = api_statuses_update('json');
self::assertStatus($result['status']);