mirror of
https://github.com/friendica/friendica
synced 2024-11-10 00:23:00 +00:00
Fixing tests
This commit is contained in:
parent
242fd646d2
commit
328a6c9e4e
1 changed files with 6 additions and 6 deletions
|
@ -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']);
|
||||
|
|
Loading…
Reference in a new issue