mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
fixing some more tests
This commit is contained in:
parent
55679a6021
commit
51dcfe134e
6 changed files with 6 additions and 6 deletions
|
@ -52,7 +52,7 @@ class Activity extends BaseApi
|
|||
$res = Item::performActivity($request['id'], $this->parameters['verb'], $uid);
|
||||
|
||||
if ($res) {
|
||||
if ($this->parameters['extension'] ?? '' == 'xml') {
|
||||
if (($this->parameters['extension'] ?? '') == 'xml') {
|
||||
$ok = 'true';
|
||||
} else {
|
||||
$ok = 'ok';
|
||||
|
|
|
@ -43,7 +43,7 @@ class Notification extends BaseApi
|
|||
$notifications[] = new ApiNotification($Notify);
|
||||
}
|
||||
|
||||
if ($this->parameters['extension'] ?? '' == 'xml') {
|
||||
if (($this->parameters['extension'] ?? '') == 'xml') {
|
||||
$xmlnotes = [];
|
||||
foreach ($notifications as $notification) {
|
||||
$xmlnotes[] = ['@attributes' => $notification->toArray()];
|
||||
|
|
|
@ -48,7 +48,7 @@ class Show extends BaseApi
|
|||
$profile = self::formatProfile($profile, $profileFields);
|
||||
|
||||
$profiles = [];
|
||||
if ($this->parameters['extension'] ?? '' == 'xml') {
|
||||
if (($this->parameters['extension'] ?? '') == 'xml') {
|
||||
$profiles['0:profile'] = $profile;
|
||||
} else {
|
||||
$profiles[] = $profile;
|
||||
|
|
|
@ -31,7 +31,7 @@ class Test extends BaseApi
|
|||
{
|
||||
protected function rawContent(array $request = [])
|
||||
{
|
||||
if ($this->parameters['extension'] ?? '' == 'xml') {
|
||||
if (($this->parameters['extension'] ?? '') == 'xml') {
|
||||
$ok = 'true';
|
||||
} else {
|
||||
$ok = 'ok';
|
||||
|
|
|
@ -31,7 +31,7 @@ class RateLimitStatus extends BaseApi
|
|||
{
|
||||
protected function rawContent(array $request = [])
|
||||
{
|
||||
if ($this->parameters['extension'] ?? '' == 'xml') {
|
||||
if (($this->parameters['extension'] ?? '') == 'xml') {
|
||||
$hash = [
|
||||
'remaining-hits' => '150',
|
||||
'@attributes' => ["type" => "integer"],
|
||||
|
|
|
@ -51,6 +51,6 @@ class TestTest extends ApiTest
|
|||
'Content-type' => ['text/xml'],
|
||||
ICanCreateResponses::X_HEADER => ['xml']
|
||||
], $response->getHeaders());
|
||||
self::assertxml($response->getBody(), 'true');
|
||||
self::assertxml($response->getBody(), 'ok');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue