Fix Api and BaseObject tests
This commit is contained in:
@@ -610,8 +610,8 @@ class ApiTest extends DatabaseTest
|
||||
public function testApiErrorWithJson()
|
||||
{
|
||||
$this->assertEquals(
|
||||
'{"status":{"error":"error_message","code":"200 Friendica\\\\Network\\\\HTTP","request":""}}',
|
||||
api_error('json', new HTTPException('error_message'))
|
||||
'{"status":{"error":"error_message","code":"200 OK","request":""}}',
|
||||
api_error('json', new HTTPException\OKException('error_message'))
|
||||
);
|
||||
}
|
||||
|
||||
@@ -628,10 +628,10 @@ class ApiTest extends DatabaseTest
|
||||
'xmlns:friendica="http://friendi.ca/schema/api/1/" '.
|
||||
'xmlns:georss="http://www.georss.org/georss">'."\n".
|
||||
' <error>error_message</error>'."\n".
|
||||
' <code>200 Friendica\Network\HTTP</code>'."\n".
|
||||
' <code>200 OK</code>'."\n".
|
||||
' <request/>'."\n".
|
||||
'</status>'."\n",
|
||||
api_error('xml', new HTTPException('error_message'))
|
||||
api_error('xml', new HTTPException\OKException('error_message'))
|
||||
);
|
||||
}
|
||||
|
||||
@@ -648,10 +648,10 @@ class ApiTest extends DatabaseTest
|
||||
'xmlns:friendica="http://friendi.ca/schema/api/1/" '.
|
||||
'xmlns:georss="http://www.georss.org/georss">'."\n".
|
||||
' <error>error_message</error>'."\n".
|
||||
' <code>200 Friendica\Network\HTTP</code>'."\n".
|
||||
' <code>200 OK</code>'."\n".
|
||||
' <request/>'."\n".
|
||||
'</status>'."\n",
|
||||
api_error('rss', new HTTPException('error_message'))
|
||||
api_error('rss', new HTTPException\OKException('error_message'))
|
||||
);
|
||||
}
|
||||
|
||||
@@ -668,10 +668,10 @@ class ApiTest extends DatabaseTest
|
||||
'xmlns:friendica="http://friendi.ca/schema/api/1/" '.
|
||||
'xmlns:georss="http://www.georss.org/georss">'."\n".
|
||||
' <error>error_message</error>'."\n".
|
||||
' <code>200 Friendica\Network\HTTP</code>'."\n".
|
||||
' <code>200 OK</code>'."\n".
|
||||
' <request/>'."\n".
|
||||
'</status>'."\n",
|
||||
api_error('atom', new HTTPException('error_message'))
|
||||
api_error('atom', new HTTPException\OKException('error_message'))
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user